Hey ,everyone
I have some issue, when i try to modify the default parametres of ovxio::creatVideoRender().
I want to controle the encoding in order to use jetson nano chips for H265 encoding and adjuste the quality by modifing the bitrate.
Until now i found the function getVideoBitrate()
int getVideoBitrate()
{
if (const char * const fromEnv = ::getenv("NVXIO_VIDEO_RENDER_BITRATE")) try
{
return std::max(std::stoi(fromEnv), 0);
}
catch (...)
{
return 0;
}
return -1;
}
``` from : GStreamerVideoRenderImpl.cpp (https://bigfoot.cs.unc.edu:3000/otternes/cuda_scheduling_examiner/src/bdd6c707bc1139c37ea09331f0cee926f01b85bd/src/third_party/VisionWorks-1.6-Demos/nvxio/src/NVX/Render/GStreamer/GStreamerVideoRenderImpl.cpp)
When i call this function the result optained is -1.
What I aspect is to use setenv( "NVXIO_VIDEO_RENDER_BITRATE", "10",1) like that i ordert to have an Bitrate at 10mb/s for exemple.
unforgetly isn't so easy that doesn't work.
Please someone have clue to control the bit rate and the encoding nvxio_render?