diff --git a/GNULinux/HowtoVideo.md b/GNULinux/HowtoVideo.md new file mode 100644 index 00000000..06bf69c0 --- /dev/null +++ b/GNULinux/HowtoVideo.md @@ -0,0 +1,31 @@ +# Howto vidéo sous GNU/Linux + + # apt install ffmpeg kazam + +Infos sur une vidéo : + + $ ffprobe + +Convertir une vidéo .mp4 en .wbm : + + $ ffmpeg -i input.mp4 -c:v libvpx -qmin 0 -qmax 50 -crf 5 -b:v 1M -c:a libvorbis output.webm + +Couper une vidéo, exemple en prenant les 23 premières secondes : + + $ ffmpeg -i input.mp4 -ss 0 -c copy -t 23 output.mp4 + +Enregistrement d'un screencast : + + $ kazam + + SUPER-CTRL-R - Start Recording + SUPER+CTRL+F - Stop Recording + SUPER-CTRL-F - Finish Recording + SUPER-CTRL-W - Show/Hide main window + SUPER-CTRL-Q - Quit + + + + + +