enable calendar, add urls newsboat, update to tl2019, output jpg for resize script...
[dotfiles.git] / shell / .local / bin / ac3fix
1 #!/bin/bash
2 if [ $# -eq 0 ]
3 then
4 echo "Usage $0 [file1 [file2 ..]]" >&2
5 fi
6
7 while (( "$#" ))
8 do
9 ffmpeg -i "$1" -acodec ac3 -vcodec copy "ac3-$1"
10 shift
11 done