LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   A faster batch processing method (https://www.linuxquestions.org/questions/linux-software-2/a-faster-batch-processing-method-564493/)

Rick069 06-25-2007 10:14 PM

A faster batch processing method
 
Does anyone have an opinion of what is a faster way of batch processing .avi files or any video file? Batch scripts or what have you. Maybe an example would be helpful.

macemoneta 06-25-2007 11:23 PM

When I have to transcode a set of videos, I usually just use a for loop on the command line. For example, to run a script "recode2dvd" on each ".avi" file in the current directory:

Code:

for file in *.avi ; do recode2dvd $file ; done


All times are GMT -5. The time now is 12:21 PM.