I m new to ffmpeg
I found it easier to interact with it from Javafx when using the JavaCV project
I m successfully streaming from an RTSP protocol and I want to fine tune my player for better performance, to do so I need to activate some options but I have no idea how to achieve this configuration, since the grabber.setOption(key, value);
is a key value signature where grabber
is instance of FFmpegFrameGrabber
.
Shortly, How to configure ffmpeg by code when using JavaCV?
Sorry I had a miss understanding of the concept
ffmpeg can be configured to enable some support (modules) like the ZVBI to do so you have to refer to the install documentation of ffmpeg by using the ./configure
to fine tune you have the following answer that will guide you to use the api of ffmpeg in opencv to use the enabled modules in ffmpeg by the tuning value
Shortly the flow is
Read about a module
choose the best tuning values depending on your needs
refer to answer to choose the best api call to set the values
Thanks