Re: how to convert a ma4 file to other format??

2018-01-28 Thread Wolfgang Pfeiffer
On Sun, 28 Jan 2018 16:56:12 +0100
Wolfgang Pfeiffer  wrote:

> Batch mode encoding all sorts of video and audio files in a folder, no
   ^
should say .. " of many sorts" ...

> matter what sort (avi, wav, mp4, wav, au etc. ) to  mp3, with a single
> command:
> 
> for f in *.*; do ffmpeg -i "$f" -codec:a libmp3lame -qscale:a 0 
> "${f/%.*/.mp3}"; done



-- 
Wolfgang Pfeiffer
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: how to convert a ma4 file to other format??

2018-01-28 Thread Wolfgang Pfeiffer
On Sun, 28 Jan 2018 16:56:12 +0100
Wolfgang Pfeiffer  wrote:


> 
> Batch mode encoding all sorts of video and audio files in a folder, 

With the command below ffmpeg will probably try to encode *all*
files in a folder ... careful ... :)

> no matter what sort (avi, wav, mp4, wav, au etc. ) to  mp3, with a single
> command:
> 
> for f in *.*; do ffmpeg -i "$f" -codec:a libmp3lame -qscale:a 0 
> "${f/%.*/.mp3}"; done

-- 
Wolfgang Pfeiffer
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: how to convert a ma4 file to other format??

2018-01-28 Thread Wolfgang Pfeiffer
On Sat, 27 Jan 2018 18:26:48 -0500
Todd Zullinger  wrote:

> Samuel Sieb wrote:
> > Close, but that will give you output files like filename.m4a.mp3.
> > 
> > for f in *.m4a; do ffmpeg -i "$f" "${f%.m4a}.mp3"; done  
> 
> You can also use "${f/%m4a/mp3}" in bash and zsh (and
> possibly other shells, but I'm not familiar with pattern
> substitution in others).  The % at the beginning of the
> pattern achors the match to the end of the string.
> 
> (Not that it's important; I just like playing shell golf. :)
> 

Batch mode encoding all sorts of video and audio files in a folder, no
matter what sort (avi, wav, mp4, wav, au etc. ) to  mp3, with a single
command:

for f in *.*; do ffmpeg -i "$f" -codec:a libmp3lame -qscale:a 0 
"${f/%.*/.mp3}"; done

Caveats, notes: 
Tests were done in zsh and bash (system shell seems bash; zsh was
entered  with a simple 'zsh' at a bash prompt)

If input file names are identical before the suffixes (like
example.avi and example.wav) ffmpeg, while encoding, will ask whether to
overwrite the first example.mp3 it made. Should be doable by simply
renaming these input files ... or by writing better code than I
did .. ;)

I haven't done tests with input files with spaces in their names ...
so: careful!

I only do scripting casually; i.e. when I need it. I'm not a pro in
that. So if someone knows how to optimize the snippet: welcome ... ;)

Thanks to everyone in this thread. It helped lots. ... ;)

Wolfgang
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: how to convert a ma4 file to other format??

2018-01-28 Thread wwp
Hello,


On Sun, 28 Jan 2018 08:04:07 +0800 Ed Greshko  wrote:

> On 01/28/18 07:57, Ed Greshko wrote:
> > On 01/28/18 04:30, Samuel Sieb wrote:  
> >> On 01/27/2018 11:19 AM, Ed Greshko wrote:  
> >>> On 01/28/18 03:03, Antonio M wrote:  
>  I have not clear how to convert many files at same time by ffmpeg or 
>  Vlc...  
> >>> It is only 03:20 here  But something like
> >>>
> >>> for f in *.m4a; do ffmpeg -i "$f" "$f.mp3"; done
> >>>
> >>> could be done.  
> >> Close, but that will give you output files like filename.m4a.mp3.
> >>
> >> for f in *.m4a; do ffmpeg -i "$f" "${f%.m4a}.mp3"; done   
> > Hey, what to you want for 03:20?  :-) :-)
> >  
> One may want to add "-loglevel quiet" to the ffmpeg command.  Or another 
> level to see
> less output. 
[snip]

2 cents more: what suppresses the technical header is -hide_banner.


Regards,

-- 
wwp


pgpkffU4YK59s.pgp
Description: OpenPGP digital signature
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: how to convert a ma4 file to other format??

2018-01-27 Thread Ed Greshko
On 01/28/18 07:57, Ed Greshko wrote:
> On 01/28/18 04:30, Samuel Sieb wrote:
>> On 01/27/2018 11:19 AM, Ed Greshko wrote:
>>> On 01/28/18 03:03, Antonio M wrote:
 I have not clear how to convert many files at same time by ffmpeg or Vlc...
>>> It is only 03:20 here  But something like
>>>
>>> for f in *.m4a; do ffmpeg -i "$f" "$f.mp3"; done
>>>
>>> could be done.
>> Close, but that will give you output files like filename.m4a.mp3.
>>
>> for f in *.m4a; do ffmpeg -i "$f" "${f%.m4a}.mp3"; done 
> Hey, what to you want for 03:20?  :-) :-)
>
One may want to add "-loglevel quiet" to the ffmpeg command.  Or another level 
to see
less output. 

OK, not much better at 08:00 and no coffee.

-- 
A motto of mine is: When in doubt, try it out



signature.asc
Description: OpenPGP digital signature
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: how to convert a ma4 file to other format??

2018-01-27 Thread Ed Greshko
On 01/28/18 04:30, Samuel Sieb wrote:
> On 01/27/2018 11:19 AM, Ed Greshko wrote:
>> On 01/28/18 03:03, Antonio M wrote:
>>> I have not clear how to convert many files at same time by ffmpeg or Vlc...
>>
>> It is only 03:20 here  But something like
>>
>> for f in *.m4a; do ffmpeg -i "$f" "$f.mp3"; done
>>
>> could be done.
>
> Close, but that will give you output files like filename.m4a.mp3.
>
> for f in *.m4a; do ffmpeg -i "$f" "${f%.m4a}.mp3"; done 

Hey, what to you want for 03:20?  :-) :-)

-- 
A motto of mine is: When in doubt, try it out



signature.asc
Description: OpenPGP digital signature
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: how to convert a ma4 file to other format??

2018-01-27 Thread Todd Zullinger
Samuel Sieb wrote:
> Close, but that will give you output files like filename.m4a.mp3.
> 
> for f in *.m4a; do ffmpeg -i "$f" "${f%.m4a}.mp3"; done

You can also use "${f/%m4a/mp3}" in bash and zsh (and
possibly other shells, but I'm not familiar with pattern
substitution in others).  The % at the beginning of the
pattern achors the match to the end of the string.

(Not that it's important; I just like playing shell golf. :)

-- 
Todd
~~
Dope will get you through times of no money better than money will get
you through times of no dope.
-- Freewheelin' Franklin



signature.asc
Description: PGP signature
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: how to convert a ma4 file to other format??

2018-01-27 Thread Samuel Sieb

On 01/27/2018 11:19 AM, Ed Greshko wrote:

On 01/28/18 03:03, Antonio M wrote:

I have not clear how to convert many files at same time by ffmpeg or Vlc...


It is only 03:20 here  But something like

for f in *.m4a; do ffmpeg -i "$f" "$f.mp3"; done

could be done.


Close, but that will give you output files like filename.m4a.mp3.

for f in *.m4a; do ffmpeg -i "$f" "${f%.m4a}.mp3"; done
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: how to convert a ma4 file to other format??

2018-01-27 Thread Ed Greshko
On 01/28/18 03:03, Antonio M wrote:
> Now I can convert using Vlc, Soundconverter and ffmpeg.
>
> I have not clear how to convert many files at same time by ffmpeg or Vlc...
>

It is only 03:20 here  But something like

for f in *.m4a; do ffmpeg -i "$f" "$f.mp3"; done

could be done.

-- 
A motto of mine is: When in doubt, try it out



signature.asc
Description: OpenPGP digital signature
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: how to convert a ma4 file to other format??

2018-01-27 Thread Antonio M
Now I can convert using Vlc, Soundconverter and ffmpeg.

I have not clear how to convert many files at same time by ffmpeg or Vlc...

Antonio Montagnani

Linux Fedora 27(Workstation)
da/from Gmail

2018-01-27 1:10 GMT+01:00 Ed Greshko :

> On 01/27/18 04:30, Antonio M wrote:
> > thiese are the installed plugins for gstreamer
> >
> >
> >
> > gstreamer-plugins-base.x86_64 0.10.36-18.fc27
> @fedora
> > gstreamer-plugins-good.x86_64 0.10.31-20.fc27
> @fedora
> > gstreamer-plugins-ugly.x86_64 0.10.19-23.fc27
> @rpmfusion-free
> > gstreamer1-plugins-bad-free.i686  1.12.4-1.fc27
> @updates
> > gstreamer1-plugins-bad-free.x86_641.12.4-1.fc27
> @updates
> > gstreamer1-plugins-bad-free-gtk.x86_641.12.4-1.fc27
> @updates
> > gstreamer1-plugins-base.i686  1.12.4-1.fc27
> @updates
> > gstreamer1-plugins-base.x86_641.12.4-1.fc27
> @updates
> > gstreamer1-plugins-good.x86_641.12.4-1.fc27
> @updates
> > gstreamer1-plugins-ugly.x86_641.12.4-1.fc27
> @rpmfusion-free-updates
> > gstreamer1-plugins-ugly-free.x86_64   1.12.4-1.fc27   @updates
> >
> > Of course Vlc works (even I cant' convert all files together). Tnx for
> the help to
> > all of you
> >
>
> ffmpeg uses libmp3lame to convert from ma4 to mp3.  So, install
> lame-libs.  And you'd
> get something like...
>
> [egreshko@meimei ~]$ ffmpeg -i sound.m4a sound.mp3
> ffmpeg version 3.3.6 Copyright (c) 2000-2017 the FFmpeg developers
>   built with gcc 7 (GCC)
>   configuration: --prefix=/usr --bindir=/usr/bin
> --datadir=/usr/share/ffmpeg
> --docdir=/usr/share/doc/ffmpeg --incdir=/usr/include/ffmpeg
> --libdir=/usr/lib64
> --mandir=/usr/share/man --arch=x86_64 --optflags='-O2 -g -pipe -Wall
> -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions
> -fstack-protector-strong
> --param=ssp-buffer-size=4 -grecord-gcc-switches
> -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m64 -mtune=generic'
> --extra-ldflags='-Wl,-z,relro -specs=/usr/lib/rpm/redhat/redhat-hardened-ld
> '
> --extra-cflags='-I/usr/include/nvenc ' --enable-libopencore-amrnb
> --enable-libopencore-amrwb --enable-libvo-amrwbenc --enable-version3
> --enable-bzlib
> --disable-crystalhd --enable-fontconfig --enable-frei0r --enable-gcrypt
> --enable-gnutls --enable-ladspa --enable-libass --enable-libbluray
> --enable-libcdio
> --enable-indev=jack --enable-libfreetype --enable-libfribidi
> --enable-libgsm
> --enable-libmp3lame --enable-nvenc --enable-openal --enable-opencl
> --enable-opengl
> --enable-libopenjpeg --enable-libopus --enable-libpulse
> --enable-libschroedinger
> --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libvorbis
> --enable-libv4l2 --enable-libvidstab --enable-libvpx --enable-libx264
> --enable-libx265 --enable-libxvid --enable-avfilter --enable-avresample
> --enable-postproc --enable-pthreads --disable-static --enable-shared
> --enable-gpl
> --disable-debug --disable-stripping --shlibdir=/usr/lib64 --enable-libmfx
> --enable-runtime-cpudetect
>   libavutil  55. 58.100 / 55. 58.100
>   libavcodec 57. 89.100 / 57. 89.100
>   libavformat57. 71.100 / 57. 71.100
>   libavdevice57.  6.100 / 57.  6.100
>   libavfilter 6. 82.100 /  6. 82.100
>   libavresample   3.  5.  0 /  3.  5.  0
>   libswscale  4.  6.100 /  4.  6.100
>   libswresample   2.  7.100 /  2.  7.100
>   libpostproc54.  5.100 / 54.  5.100
> Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'sound.m4a':
>   Metadata:
> major_brand : 3gp4
> minor_version   : 0
> compatible_brands: isom3gp4
> creation_time   : 2018-01-23T02:24:12.00Z
> com.android.version: 7.0
>   Duration: 00:00:11.33, start: 0.00, bitrate: 152 kb/s
> Stream #0:0(eng): Audio: aac (LC) (mp4a / 0x6134706D), 44100 Hz, mono,
> fltp, 128
> kb/s (default)
> Metadata:
>   creation_time   : 2018-01-23T02:24:12.00Z
>   handler_name: SoundHandle
> Stream mapping:
>   Stream #0:0 -> #0:0 (aac (native) -> mp3 (libmp3lame))
> Press [q] to stop, [?] for help
> Output #0, mp3, to 'sound.mp3':
>   Metadata:
> major_brand : 3gp4
> minor_version   : 0
> compatible_brands: isom3gp4
> com.android.version: 7.0
> TSSE: Lavf57.71.100
> Stream #0:0(eng): Audio: mp3 (libmp3lame), 44100 Hz, mono, fltp
> (default)
> Metadata:
>   creation_time   : 2018-01-23T02:24:12.00Z
>   handler_name: SoundHandle
>   encoder : Lavc57.89.100 libmp3lame
> size=  89kB time=00:00:11.33 bitrate=  64.4kbits/s speed=  59x
> video:0kB audio:89kB subtitle:0kB other streams:0kB global headers:0kB
> muxing
> overhead: 0.390513%
>
> [egreshko@meimei ~]$ file sound.m*
> sound.m4a: ISO Media, MPEG v4 system, 3GPP
> sound.mp3: Audio file with ID3 version 2.4.0, contains:MPEG ADTS, layer
> III, v1,  56
> kbps, 44.1 kHz, Monaural
>
>
> --
> A motto of mine is: When in doubt, try it out
>
> ___

Re: how to convert a ma4 file to other format??

2018-01-26 Thread Ed Greshko
On 01/27/18 04:30, Antonio M wrote:
> thiese are the installed plugins for gstreamer
>
>
>
> gstreamer-plugins-base.x86_64 0.10.36-18.fc27 @fedora 
>  
> gstreamer-plugins-good.x86_64 0.10.31-20.fc27 @fedora 
>  
> gstreamer-plugins-ugly.x86_64 0.10.19-23.fc27 @rpmfusion-free 
>  
> gstreamer1-plugins-bad-free.i686  1.12.4-1.fc27   @updates
>  
> gstreamer1-plugins-bad-free.x86_64    1.12.4-1.fc27   @updates
>  
> gstreamer1-plugins-bad-free-gtk.x86_64    1.12.4-1.fc27   @updates
>  
> gstreamer1-plugins-base.i686  1.12.4-1.fc27   @updates
>  
> gstreamer1-plugins-base.x86_64    1.12.4-1.fc27   @updates
>  
> gstreamer1-plugins-good.x86_64    1.12.4-1.fc27   @updates
>  
> gstreamer1-plugins-ugly.x86_64    1.12.4-1.fc27   
> @rpmfusion-free-updates
> gstreamer1-plugins-ugly-free.x86_64   1.12.4-1.fc27   @updates
>
> Of course Vlc works (even I cant' convert all files together). Tnx for the 
> help to
> all of you
>

ffmpeg uses libmp3lame to convert from ma4 to mp3.  So, install lame-libs.  And 
you'd
get something like...

[egreshko@meimei ~]$ ffmpeg -i sound.m4a sound.mp3
ffmpeg version 3.3.6 Copyright (c) 2000-2017 the FFmpeg developers
  built with gcc 7 (GCC)
  configuration: --prefix=/usr --bindir=/usr/bin --datadir=/usr/share/ffmpeg
--docdir=/usr/share/doc/ffmpeg --incdir=/usr/include/ffmpeg --libdir=/usr/lib64
--mandir=/usr/share/man --arch=x86_64 --optflags='-O2 -g -pipe -Wall
-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions 
-fstack-protector-strong
--param=ssp-buffer-size=4 -grecord-gcc-switches
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m64 -mtune=generic'
--extra-ldflags='-Wl,-z,relro -specs=/usr/lib/rpm/redhat/redhat-hardened-ld '
--extra-cflags='-I/usr/include/nvenc ' --enable-libopencore-amrnb
--enable-libopencore-amrwb --enable-libvo-amrwbenc --enable-version3 
--enable-bzlib
--disable-crystalhd --enable-fontconfig --enable-frei0r --enable-gcrypt
--enable-gnutls --enable-ladspa --enable-libass --enable-libbluray 
--enable-libcdio
--enable-indev=jack --enable-libfreetype --enable-libfribidi --enable-libgsm
--enable-libmp3lame --enable-nvenc --enable-openal --enable-opencl 
--enable-opengl
--enable-libopenjpeg --enable-libopus --enable-libpulse --enable-libschroedinger
--enable-libsoxr --enable-libspeex --enable-libtheora --enable-libvorbis
--enable-libv4l2 --enable-libvidstab --enable-libvpx --enable-libx264
--enable-libx265 --enable-libxvid --enable-avfilter --enable-avresample
--enable-postproc --enable-pthreads --disable-static --enable-shared 
--enable-gpl
--disable-debug --disable-stripping --shlibdir=/usr/lib64 --enable-libmfx
--enable-runtime-cpudetect
  libavutil  55. 58.100 / 55. 58.100
  libavcodec 57. 89.100 / 57. 89.100
  libavformat    57. 71.100 / 57. 71.100
  libavdevice    57.  6.100 / 57.  6.100
  libavfilter 6. 82.100 /  6. 82.100
  libavresample   3.  5.  0 /  3.  5.  0
  libswscale  4.  6.100 /  4.  6.100
  libswresample   2.  7.100 /  2.  7.100
  libpostproc    54.  5.100 / 54.  5.100
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'sound.m4a':
  Metadata:
    major_brand : 3gp4
    minor_version   : 0
    compatible_brands: isom3gp4
    creation_time   : 2018-01-23T02:24:12.00Z
    com.android.version: 7.0
  Duration: 00:00:11.33, start: 0.00, bitrate: 152 kb/s
    Stream #0:0(eng): Audio: aac (LC) (mp4a / 0x6134706D), 44100 Hz, mono, 
fltp, 128
kb/s (default)
    Metadata:
  creation_time   : 2018-01-23T02:24:12.00Z
  handler_name    : SoundHandle
Stream mapping:
  Stream #0:0 -> #0:0 (aac (native) -> mp3 (libmp3lame))
Press [q] to stop, [?] for help
Output #0, mp3, to 'sound.mp3':
  Metadata:
    major_brand : 3gp4
    minor_version   : 0
    compatible_brands: isom3gp4
    com.android.version: 7.0
    TSSE    : Lavf57.71.100
    Stream #0:0(eng): Audio: mp3 (libmp3lame), 44100 Hz, mono, fltp (default)
    Metadata:
  creation_time   : 2018-01-23T02:24:12.00Z
  handler_name    : SoundHandle
  encoder : Lavc57.89.100 libmp3lame
size=  89kB time=00:00:11.33 bitrate=  64.4kbits/s speed=  59x   
video:0kB audio:89kB subtitle:0kB other streams:0kB global headers:0kB muxing
overhead: 0.390513%

[egreshko@meimei ~]$ file sound.m*
sound.m4a: ISO Media, MPEG v4 system, 3GPP
sound.mp3: Audio file with ID3 version 2.4.0, contains:MPEG ADTS, layer III, 
v1,  56
kbps, 44.1 kHz, Monaural


-- 
A motto of mine is: When in doubt, try it out


signature.asc
Description: OpenPGP digital signature
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: how to convert a ma4 file to other format??

2018-01-26 Thread Wolfgang Pfeiffer
On Fri, 26 Jan 2018 13:50:41 -0500
Fred Smith  wrote:

> On Fri, Jan 26, 2018 at 06:20:15PM +0100, Antonio M wrote:
> >I installed sounconverter with a bunch of plugins, lame, ffmpeg, faac
> >--- I can convert for example a flac to mp3 but not  a m4a file to a
> >mp3 file?? what is missing??  
> 
> One can use vlc to convert between various formats. just for fun i
> converted a m4a to a mp4. Not sure if it'll go to mp3 or not.

I certainly would try ffmpeg, the Swiss Army knife for
audio/video ... :)

ffmpeg -i input.m4a output.mp3
and see what happens ...

or:
ffmpeg -i input.m4a -codec:a libmp3lame -qscale:a 0 output.mp3

https://trac.ffmpeg.org/wiki/Encode/MP3


HTH
Wolfgang
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: how to convert a ma4 file to other format??

2018-01-26 Thread Antonio M
thiese are the installed plugins for gstreamer



gstreamer-plugins-base.x86_64 0.10.36-18.fc27
@fedora
gstreamer-plugins-good.x86_64 0.10.31-20.fc27
@fedora
gstreamer-plugins-ugly.x86_64 0.10.19-23.fc27
@rpmfusion-free
gstreamer1-plugins-bad-free.i686  1.12.4-1.fc27
@updates
gstreamer1-plugins-bad-free.x86_641.12.4-1.fc27
@updates
gstreamer1-plugins-bad-free-gtk.x86_641.12.4-1.fc27
@updates
gstreamer1-plugins-base.i686  1.12.4-1.fc27
@updates
gstreamer1-plugins-base.x86_641.12.4-1.fc27
@updates
gstreamer1-plugins-good.x86_641.12.4-1.fc27
@updates
gstreamer1-plugins-ugly.x86_641.12.4-1.fc27
@rpmfusion-free-updates
gstreamer1-plugins-ugly-free.x86_64   1.12.4-1.fc27   @updates

Of course Vlc works (even I cant' convert all files together). Tnx for the
help to all of you

Antonio Montagnani

Linux Fedora 27(Workstation)
da/from Gmail

2018-01-26 19:56 GMT+01:00 Michael Schwendt :

> On Fri, 26 Jan 2018 18:20:15 +0100, Antonio M wrote:
>
> > I installed sounconverter with a bunch of plugins, lame, ffmpeg, faac
> --- I
> > can convert for example a flac to mp3 but not  a m4a file to a mp3 file??
> > what is missing??
>
> Several things possibly.
>
> * Soundconverter features automatic detection of needed GStreamer
> plugins and automatic installation of the needed packages. In case
> you've not seen a graphical dialog about that, it may be broken,
> and manually installing missing gstreamer-plugins* packages from
> 3rd party repositories may be needed. Explicitly note that the new
> gstreamer1-* packages are not compatible.
>
> * What happens if you try to decode an .m4a file to .wav? If that
> fails already, you are missing a plugin package.
>
> * Perhaps install a different conversion tool, such as
> "audio-convert-mod". It is not based on GStreamer, but is a
> graphical frontend that uses command-line tools as backend.
> It tells which converters are available, so you get a good overview.
> ___
> users mailing list -- users@lists.fedoraproject.org
> To unsubscribe send an email to users-le...@lists.fedoraproject.org
>
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: how to convert a ma4 file to other format??

2018-01-26 Thread Michael Schwendt
On Fri, 26 Jan 2018 18:20:15 +0100, Antonio M wrote:

> I installed sounconverter with a bunch of plugins, lame, ffmpeg, faac --- I
> can convert for example a flac to mp3 but not  a m4a file to a mp3 file??
> what is missing??

Several things possibly.

* Soundconverter features automatic detection of needed GStreamer
plugins and automatic installation of the needed packages. In case
you've not seen a graphical dialog about that, it may be broken,
and manually installing missing gstreamer-plugins* packages from
3rd party repositories may be needed. Explicitly note that the new
gstreamer1-* packages are not compatible.

* What happens if you try to decode an .m4a file to .wav? If that
fails already, you are missing a plugin package.

* Perhaps install a different conversion tool, such as
"audio-convert-mod". It is not based on GStreamer, but is a
graphical frontend that uses command-line tools as backend.
It tells which converters are available, so you get a good overview.
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


Re: how to convert a ma4 file to other format??

2018-01-26 Thread Fred Smith
On Fri, Jan 26, 2018 at 06:20:15PM +0100, Antonio M wrote:
>I installed sounconverter with a bunch of plugins, lame, ffmpeg, faac
>--- I can convert for example a flac to mp3 but not  a m4a file to a
>mp3 file?? what is missing??

One can use vlc to convert between various formats. just for fun i
converted a m4a to a mp4. Not sure if it'll go to mp3 or not.

also, the man page for ffmpeg documents some commandline examples that
will convert various formats to m4a. does this mean it 'll also]
convert FROM m4a? I don't know. but you may want to try it, it is 
an amazingly versatile tool!

fred

-- 
 Fred Smith -- fre...@fcshome.stoneham.ma.us -
  "For him who is able to keep you from falling and to present you before his 
 glorious presence without fault and with great joy--to the only God our Savior
 be glory, majesty, power and authority, through Jesus Christ our Lord, before
 all ages, now and forevermore! Amen."
- Jude 1:24,25 (niv) -
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org


how to convert a ma4 file to other format??

2018-01-26 Thread Antonio M
I installed sounconverter with a bunch of plugins, lame, ffmpeg, faac --- I
can convert for example a flac to mp3 but not  a m4a file to a mp3 file??
what is missing??

Tnx
Antonio Montagnani

Linux Fedora 27(Workstation)
da/from Gmail
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org