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 \