From dee053f9f1adf232abbf990e89d87ba750dc970e Mon Sep 17 00:00:00 2001 From: yorch Date: Thu, 2 Apr 2015 10:25:44 -0700 Subject: [PATCH] Added a script to compress videos using ffmpeg to lossless dirac with flac --- bash/make_lossless.sh | 4 ++++ 1 file changed, 4 insertions(+) create mode 100755 bash/make_lossless.sh diff --git a/bash/make_lossless.sh b/bash/make_lossless.sh new file mode 100755 index 0000000..7f73878 --- /dev/null +++ b/bash/make_lossless.sh @@ -0,0 +1,4 @@ +for i; + do ffmpeg -i "$i" -c:v libschroedinger -qscale:v 0 -c:a flac -qscale:a 0 "${i%.*}_Dirac+Flac.mkv" ; +done; +