dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit 428d821940e54c6fa00d8020b30d1272945b397c
parent 61632b19962961f704adb6b521a3992ee2939c4d
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Fri, 13 Mar 2020 16:33:18 +0100

Encode audio also

Diffstat:
M.local/bin/ffmpeg-encode | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.local/bin/ffmpeg-encode b/.local/bin/ffmpeg-encode @@ -3,7 +3,7 @@ encode() { ffmpeg -y -i "$1" \ -c:v libx264 -threads 0 -preset faster -pix_fmt yuv420p \ - -c:a copy -ac 1 -crf 25 \ + -c:a aac -crf 10 \ "${1%%.*}_out.mkv" }