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 c2cde73184ec69cd0d481c13f81b6194280bb45e
parent b10f5de34bcef2a348bc43ece36ba68b1e46309f
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Tue, 28 Apr 2020 22:16:02 +0200

Decrease output quality during ffmpeg-encode

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 aac -crf 10 \ + -c:a aac -crf 23 \ "${1%.*}_encoded.mp4" }