How to change the framerate #973
-
|
hi! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
KVS does not do any transcoding so you cannot change the frame rate directly. You can always use the https://gstreamer.freedesktop.org/documentation/videorate/index.html?gi-language=c Frame rate for example in a codec like |
Beta Was this translation helpful? Give feedback.
KVS does not do any transcoding so you cannot change the frame rate directly. You can always use the
videorateandaudiorateGStreamer elements to do this though:https://gstreamer.freedesktop.org/documentation/videorate/index.html?gi-language=c
https://gstreamer.freedesktop.org/documentation/audiorate/index.html?gi-language=c
Frame rate for example in a codec like
h264is embedded in the stream itself in the sps/pps, so you will need to use one of the elements above to make sure the frame it is correct before it reacheskvssinkonce it reaches the sink element you cannot just tell the sink element to change it, it must be correctly set before it hits the sink, and using the elements abov…