initial commit

This commit is contained in:
odweta
2026-05-08 13:47:58 +02:00
commit 96449ad882
2 changed files with 17 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
# Video Dumber
This one ffmpeg command should convert a video stream into an mp4 that is compatible with basically everything.
+14
View File
@@ -0,0 +1,14 @@
#!/usr/bin/env bash
ffmpeg -i "$1" \
-vf "scale=1280:-2" \
-c:v libx264 \
-profile:v main \
-level 3.1 \
-pix_fmt yuv420p \
-preset slow \
-crf 23 \
-c:a aac \
-ac 2 \
-b:a 128k \
"$2"