X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/61d7dd11d4a450a64f2817ee4db0ec7fa5880b42..b9e4a0c3af29391c27e9a020693541b9a86c4d14:/bin/work/convert_AVCD?ds=sidebyside diff --git a/bin/work/convert_AVCD b/bin/work/convert_AVCD new file mode 100755 index 0000000..36fab79 --- /dev/null +++ b/bin/work/convert_AVCD @@ -0,0 +1,12 @@ +#! /bin/bash + +for file in *.MTS; do + ffmpeg -i $file \ + -vcodec mpeg4 \ + -b 18000k \ + -acodec libmp3lame \ + -ac 2 \ + -ab 320k \ + -s 1920x1080 \ + ${file/MTS/avi} +done