From 0ea91e8b92a25bebe773701199409e703b2395b8 Mon Sep 17 00:00:00 2001 From: Matthew Clark Date: Wed, 28 Mar 2018 23:11:31 +0100 Subject: [PATCH] A word on framerate --- basics.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/basics.md b/basics.md index 344090f..656154c 100644 --- a/basics.md +++ b/basics.md @@ -84,6 +84,10 @@ gst-launch-1.0 -v filesrc location="$SRC" ! decodebin ! videoconvert ! videoscal ### Change framerate +Changing framerate is quiet common, as the world does not have a consistent standard. Facebook Live wants 30fps, YouTube wants 30 or 60fps. There's a nice summary on the [https://documentation.apple.com/en/finalcutpro/usermanual/index.html#chapter=D%26section=4%26tasks=true](Apple FCP site). + +Change framerate: + ``` gst-launch-1.0 -v filesrc location="$SRC" ! decodebin ! videoconvert ! videorate ! video/x-raw,framerate=5/1 ! autovideosink ```