Updated for Ubuntu 22.04. Also fixed merge videos cmin check
[videoscripts/.git] / merge_mpg_clips
1 #!/bin/bash
2
3 echo "-> Merging the following clips: $*"
4
5 /usr/bin/mpgtx -j $* -o merged_clips.mpg
6
7 echo "-> Clips merged to: merged_clips.mpg"
8