diff --git a/bin/omarchy-transcode b/bin/omarchy-transcode index 3a6acfd1..27337d06 100755 --- a/bin/omarchy-transcode +++ b/bin/omarchy-transcode @@ -105,9 +105,9 @@ transcode_video() { case "$format" in mp4) if [[ $resolution == "4k" ]]; then - ffmpeg -i "$input" -vf "$scale" -c:v libx265 -preset slow -crf 24 -c:a aac -b:a 192k "$output" + ffmpeg -i "$input" -vf "$scale" -c:v libx265 -preset slow -crf 24 -c:a aac -b:a 192k -movflags +faststart "$output" else - ffmpeg -i "$input" -vf "$scale" -c:v libx264 -preset fast -crf 23 -c:a copy "$output" + ffmpeg -i "$input" -vf "$scale" -c:v libx264 -preset fast -crf 23 -c:a aac -b:a 192k -movflags +faststart "$output" fi ;; gif)