From 2a3a7d73aacc1e006bc5bcfa5a01ada95e787e3f Mon Sep 17 00:00:00 2001 From: jlecour Date: Mon, 21 Dec 2020 11:26:47 +0100 Subject: [PATCH] =?UTF-8?q?Extraire=20un=20son=20depuis=20la=2010=C3=A8me?= =?UTF-8?q?=20seconde=20jusqu'=C3=A0=202h?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- GNULinux/HowtoVideo.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/GNULinux/HowtoVideo.md b/GNULinux/HowtoVideo.md index 8976bc56..f854c53f 100644 --- a/GNULinux/HowtoVideo.md +++ b/GNULinux/HowtoVideo.md @@ -27,6 +27,10 @@ Couper une vidéo, exemple en prenant les 23 premières secondes : $ ffmpeg -i input.mp4 -ss 0 -c copy -t 23 output.mp4 +Extraire un son depuis la 10ème seconde jusqu'à 2h : + + $ ffmpeg -i input.wav -ss 00:00:10.0 -t 02:00:00.0 output.wav + Enregistrement d'un screencast (capture vidéo via x11grab et audio via pulse) en WEBM : $ ffmpeg -threads auto -f pulse -i -f x11grab -s 1024x768 -i :0.0+0,0 \