From 5e2073fc722348a4b1848e36c3ef8707029284c9 Mon Sep 17 00:00:00 2001 From: jlecour Date: Tue, 10 Nov 2020 10:36:41 +0100 Subject: [PATCH] =?UTF-8?q?Convertir=20un=20.mkv=20en=20.webm,=20dans=20un?= =?UTF-8?q?e=20assez=20bonne=20qualit=C3=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- GNULinux/HowtoVideo.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/GNULinux/HowtoVideo.md b/GNULinux/HowtoVideo.md index 3a16d560..8976bc56 100644 --- a/GNULinux/HowtoVideo.md +++ b/GNULinux/HowtoVideo.md @@ -74,3 +74,9 @@ Extraire le son d'une vidéo MKV vers un MP3 mono basse qualité : ~~~ $ ffmpeg -i input.mkv -codec:a libmp3lame -ac 1 -ab 16k output.mp3 ~~~ + +Convertir un .mkv (issu de OBS par exemple) en .webm, dans une assez bonne qualité : + +~~~ +$ ffmpeg -i input.mkv -c:v libvpx -qmin 0 -qmax 50 -crf 10 -b:v 2M -c:a libvorbis output.webm +~~~ \ No newline at end of file