Karl Sinn wrote:
<snip>
Thanks for all the information. I checked the output file, and it does work also.
So one more question: How can I apply this to all the m4a files in all subdirectories?
Thanks Karl
Something like: find /path/to/m4a-files/ -name "*.m4a" -print0 | xargs -0 -i ffmpeg -i {} -acodec libmp3lame -ab 192k -ac 2 -ar 44100 {}.mp3 Note: Mind the word-wrap, the above is a single line. The command above encodes/converts the files in serial (one-by-one). The converted files will be placed in the same directory as the original, and their names will be ending in .m4a.mp3, you can rename them later if you wish (krename is a breeze if you'd like a gui for bulk renaming). Feel free to come up with alternatives :-) Kind regards Sylvester Lykkehus -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org