[FFmpeg-user] [FFMpeg user] scripting help: find > xargs ffmpeg

Dagfinn Stangeland jodgipost at gmail.com
Fri Mar 18 13:23:07 CET 2011


2011/3/18 John Doe <jdmls at yahoo.com>

>
> You want to convert /path/to/filename.flac to /path/to/filename.m4a, right?
> If sourcefile = /path/to/filename.flac,
> ${sourcefile%%.flac}.m4a = /path/to/filename.m4a
> But again, that's if you use the bash shell...
>
> JD
>
>
Yes, I use bash and I want to take the files in /path/a/somefile.flac, run
them though ffmpeg and put the output files in /path/b/somefile.m4a.
How would what you're suggesting work with what I already have?:

find  music/flac/ -iname *.flac -print0 | xargs -0 -I source ffmpeg -i
> source -acodec alac -map_meta_data 0:0,s0 "`basename "source" .flac`.m4a"
>

D


More information about the ffmpeg-user mailing list