Created
June 10, 2025 21:46
-
-
Save kazimolmez/6a6f1086f15d3d133c78c0108c653c6c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt install ffmpeg | |
mkdir optimized | |
for file in *.mp4; do | |
ffmpeg -i "$file" -vcodec libx264 -acodec aac -b:v 800k -b:a 96k -vf "scale=1280:-2" "optimized/${file%.mp4}.mp4" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment