2022-07-17

Matrox Monarch 5-minute video recordings assembled for Youtube.

This is a short bash scirpt I used to compose 5-minute mov files into one mpg file to upload to Youtube. We have a Matrox Monarch that records locally to flash drive, and the 5-minute videos must be put together later, if we don't stream directly to Youtube.
 
/usr/bin/rm -rf xfilelist

for i in `ls -1 *.mov`;

do echo "file $i"  >> xfilelist

done

ffmpeg -safe 0 -f concat -i xfilelist -vcodec copy -acodec copy $1.mov


No comments:

Post a Comment

Matrox Monarch 5-minute video recordings assembled for Youtube.

This is a short bash scirpt I used to compose 5-minute mov files into one mpg file to upload to Youtube. We have a Matrox Monarch that rec...