On Mon, Jul 23, 2018 at 9:46 AM, Josh Blagden <[email protected]> wrote:

> Hi folks,
>
>     I have some Blu-Rays that I'd like to convert for my Roku. For most
> of them, I just need to convert the audio track from DTS to another
> codec. I think I've got the basics of FFMPEG, but I'd like to be able to
> do these conversions in batches (i.e. a season at a time) instead of
> having to convert one video at a time. Is there a relatively simple way
> to do this with FFMPEG?
>
>
> Thanks,
>
>             Josh Blagden
>
>
The relatively simple way would involve bash, basically:

for x in *.ext;  do

    ffmpeg -i ${x} .... ;

done


-- 

*William Caulfield *| *ContentBridge Systems*
Product Manager, Digital Media & Systems | www.contentbridge.tv
_______________________________________________
ffmpeg-user mailing list
[email protected]
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
[email protected] with subject "unsubscribe".

Reply via email to