]> git.rmz.io Git - dotfiles.git/blob - bin/work/convert_AVCD
nvim/ui: actually... don't show bufferline on single buffer
[dotfiles.git] / bin / work / convert_AVCD
1 #! /bin/bash
2
3 for file in *.MTS; do
4 ffmpeg -i $file \
5 -vcodec mpeg4 \
6 -b 18000k \
7 -acodec libmp3lame \
8 -ac 2 \
9 -ab 320k \
10 -s 1920x1080 \
11 ${file/MTS/avi}
12 done