Search found 5989 matches: FFMPEG
Searched query: FFMPEG
- Mon Mar 14, 2011 3:52 am
- Forum: Mac OS X
- Topic: Audacity can't find ffmpeg and lame files
- Replies: 49
- Views: 17544
Re: Audacity can't find ffmpeg and lame files
For those who cannot install due to not having admin rights, I' would agree to provide a zip as well as a dmg for LAME and FFmpeg, if there is sufficient demand. We do that on Windows anyway. Honestly, I thought was had a zip version already. We should supply one for situations like ...
- Sat Mar 12, 2011 9:45 pm
- Forum: GNU/Linux and Unix-like
- Topic: Draft: HOWTO convert audio file formats
- Replies: 60
- Views: 85728
Re: Draft: HOWTO convert audio file formats
The incomplete file conversion might be due to some bugs in the ffmpeg codec... it may happen... For example, I've came across some video files which played fine in some viewers and not so well on others... if you can successfully convert the files to wav ...
- Sat Mar 12, 2011 9:07 pm
- Forum: GNU/Linux and Unix-like
- Topic: Draft: HOWTO convert audio file formats
- Replies: 60
- Views: 85728
Re: Draft: HOWTO convert audio file formats
The incomplete file conversion might be due to some bugs in the ffmpeg codec... it may happen... For example, I've came across some video files which played fine in some viewers and not so well on others... if you can successfully convert the files to wav ...
- Sat Mar 12, 2011 8:47 pm
- Forum: GNU/Linux and Unix-like
- Topic: Draft: HOWTO convert audio file formats
- Replies: 60
- Views: 85728
Re: Draft: HOWTO convert audio file formats
... find . -name "*.m4a" |while read f do echo mkdir -p ../musica-mp3/$(dirname $f) mkdir -p ../musica-mp3/$(dirname $f) echo ffmpeg -i $f -acodec libmp3lame -ab 256k ../musica-mp3/${f%%.m4a}.mp3 ffmpeg -i $f -acodec libmp3lame -ab 256k ../musica-mp3/${f%%.m4a}.mp3 done and ...
- Sat Mar 12, 2011 6:30 pm
- Forum: GNU/Linux and Unix-like
- Topic: Draft: HOWTO convert audio file formats
- Replies: 60
- Views: 85728
Re: Draft: HOWTO convert audio file formats
... the way... Try this script IFS=$'n' cd /home/giampy/musica/ find . -name "*.m4a" |while read f do mkdir -p ../musica-mp3/$(dirname $f) ffmpeg -i $f -acodec libmp3lame -ab 256k ../musica-mp3/${f%%.m4a}.mp3 done IFS stands for "Internal Field Separator". It's a bash variable ...
- Sat Mar 12, 2011 5:19 pm
- Forum: GNU/Linux and Unix-like
- Topic: Draft: HOWTO convert audio file formats
- Replies: 60
- Views: 85728
Re: Draft: HOWTO convert audio file formats
... # mkdir ../musica-mp3 find . -name "*.m4a" |while read f do mkdir -p "../musica-mp3/$(dirname "$f")" ffmpeg -i "$f" -acodec libmp3lame -ab 256k "../musica-mp3/${f%%.m4a}.mp3" done and then executed it with bash conversioneM4A-MP3 ...
- Sat Mar 12, 2011 3:05 pm
- Forum: GNU/Linux and Unix-like
- Topic: Draft: HOWTO convert audio file formats
- Replies: 60
- Views: 85728
Re: Draft: HOWTO convert audio file formats
the echo part gave me this command line sequence: mkdir -p ../musica-mp3/./Portishead/Dummy ffmpeg -i ./Portishead/Dummy/09 Biscuit.m4a -acodec libmp3lame -ab 256k ../music-wav/./Portishead/Dummy/09 Biscuit.mp3 mkdir -p ../musica-mp3/./Amelia Cuni & Werner Durand/Ashtayama ...
- Sat Mar 12, 2011 3:06 am
- Forum: Compiling Audacity
- Topic: [Solved] Trouble compiling Audacity from SVN with ASIO
- Replies: 35
- Views: 19986
Re: Having alot of trouble compiling Audacity from SVN
The "Audacity Log" that I posted before was from Help->Show Log... I guess I didn't have the right version of FFmpeg though, now I do, here is what the log looks like now: 21:54:21: Error: The module E:Building_AudacityAudacity SVNwinUnicode Releasemodulesmod-script-pipe.dll ...
- Fri Mar 11, 2011 8:26 pm
- Forum: GNU/Linux and Unix-like
- Topic: Draft: HOWTO convert audio file formats
- Replies: 60
- Views: 85728
Re: Draft: HOWTO convert audio file formats
the echo part gave me this command line sequence: mkdir -p ../musica-mp3/./Portishead/Dummy ffmpeg -i ./Portishead/Dummy/09 Biscuit.m4a -acodec libmp3lame -ab 256k ../music-wav/./Portishead/Dummy/09 Biscuit.mp3 mkdir -p ../musica-mp3/./Amelia Cuni & Werner Durand/Ashtayama ...
- Fri Mar 11, 2011 5:44 pm
- Forum: GNU/Linux and Unix-like
- Topic: Draft: HOWTO convert audio file formats
- Replies: 60
- Views: 85728
Re: Draft: HOWTO convert audio file formats
... i am improving search abilities, albeit slowly) the m4a to mp3. i have found an efficient way to go straight from m4a into mp3 with this command: ffmpeg -i Compagnia.m4a -acodec libmp3lame -ab 256k compagnia.mp3 so, integrating with your examples, i came up with something like this: cd /home/giampy/musica/ ...