initial commit
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
# Video Dumber
|
||||
|
||||
This one ffmpeg command should convert a video stream into an mp4 that is compatible with basically everything.
|
||||
Executable
+14
@@ -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"
|
||||
Reference in New Issue
Block a user