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 a5b47158c0d27036e95af6bf3cf7fb8fe6c6c72f
parent bedf7593acc44fe290de2634db43734c1752d858
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Tue, 17 Mar 2020 09:45:21 +0100

Output as mp4

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 @@ -4,7 +4,7 @@ encode() { ffmpeg -y -i "$1" \ -c:v libx264 -threads 0 -preset faster -pix_fmt yuv420p \ -c:a aac -crf 10 \ - "${1%%.*}_out.mkv" + "${1%%.*}_out.mp4" } for f in "$@"; do