aboutsummaryrefslogtreecommitdiff
path: root/ffmpeg.wiki
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-08-07 15:43:05 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2022-08-07 15:43:05 +0200
commit6eafb877a2c3365250efda1f1ddc2df00e2b5720 (patch)
tree0fab368ccac7debd0fdd8376b5ab6983313e0f28 /ffmpeg.wiki
parentfre 5 aug 2022 16:01:39 CEST (diff)
downloadwiki-public-6eafb877a2c3365250efda1f1ddc2df00e2b5720.tar.gz
wiki-public-6eafb877a2c3365250efda1f1ddc2df00e2b5720.tar.xz
sön 7 aug 2022 15:43:05 CEST
Diffstat (limited to 'ffmpeg.wiki')
-rw-r--r--ffmpeg.wiki20
1 files changed, 20 insertions, 0 deletions
diff --git a/ffmpeg.wiki b/ffmpeg.wiki
new file mode 100644
index 0000000..42c026e
--- /dev/null
+++ b/ffmpeg.wiki
@@ -0,0 +1,20 @@
+{{{sh
+ffmpeg -i <input> \
+ -c:v libx264 -map 0:v \
+ -map 0:a:0? -c:a:0 aac \
+ -map 0:a:0? -c:a:0 aac \
+ <output>
+}}}
+
+
+Right idea, but wrong:w
+
+{{{sh
+ffmpeg -i 'Angry Video Game Nerd - The Movie.mkv' \
+ -c:0 libx264
+ -map 0:v -map 0:3? -c:a:0 aac -map 0:4 -c:a:2 aac -map 0:6? -c:s:3 copy \
+ avgn-final.mp4
+}}}
+
+
+