From 3a405a4903110610f15830709d4897812be27a07 Mon Sep 17 00:00:00 2001 From: Gregory Colpart Date: Tue, 16 Apr 2019 17:12:12 +0200 Subject: [PATCH] gestion des fichiers .m4a --- GNULinux/HowtoVideo.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/GNULinux/HowtoVideo.md b/GNULinux/HowtoVideo.md index 3eb565c..a05a81a 100644 --- a/GNULinux/HowtoVideo.md +++ b/GNULinux/HowtoVideo.md @@ -55,10 +55,16 @@ $ ffmpeg -i input.wav -codec:a libmp3lame -qscale:a 4 output.mp3 $ ffmpeg -i input.wav -codec:a libmp3lame -qscale:a 9 -ac 1 output.mp3 ~~~ +Pour un audio .m4a, cela devrait être auto-détecté, donc : + +~~~ +$ ffmpeg -i input.m4a -codec:a libmp3lame output.mp3 +~~~ + Convertir un audio .wav en .ogg : ~~~ $ ffmpeg -i input.wav -codec:a libvorbis output.ogg ~~~ -Voir \ No newline at end of file +Voir