From a58d2cc409efbbd08b3d502e6af1925f656c1728 Mon Sep 17 00:00:00 2001 From: gcolpart Date: Thu, 15 Sep 2016 19:37:43 +0200 Subject: [PATCH] =?UTF-8?q?nos=20infos=20sur=20les=20commandes=20de=20base?= =?UTF-8?q?=20pour=20g=C3=A9rer=20la=20vid=C3=A9o=20sous=20Linux?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- GNULinux/HowtoVideo.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 GNULinux/HowtoVideo.md 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 + + + + + +