From e85bb0b54b284e8713201756c66975a6b0efab9f Mon Sep 17 00:00:00 2001 From: jlecour Date: Wed, 9 Sep 2020 16:09:07 +0200 Subject: [PATCH] conversion MKV mp3 --- GNULinux/HowtoVideo.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/GNULinux/HowtoVideo.md b/GNULinux/HowtoVideo.md index a05a81a0..483812ed 100644 --- a/GNULinux/HowtoVideo.md +++ b/GNULinux/HowtoVideo.md @@ -68,3 +68,9 @@ $ ffmpeg -i input.wav -codec:a libvorbis output.ogg ~~~ Voir + +Extraire le son d'une vidéo MKV vers un MP3 mono basse qualité : + +~~~ +$ ffmpeg -i input.mkv -vn -ar 44100 -codec:a libmp3lame -ac 1 -ab 16k output.mp3 +~~~