-
Notifications
You must be signed in to change notification settings - Fork 151
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Question]: How do avoid generate keyframe when dynamic change encoder frame rate? #494
Comments
Which codec? |
AMFVideoEncoderHW_HEVC. Platform: AMD Radeon RX 7700 XT. |
Platform: AMD Radeon RX 7700 XT. Is there any api to avoid generate key frame when dynamic change frame rate (set_property(FRAMERATE, fps))?@MikhailAMD |
Currently every change in framerate property causes insertion of IDR frame. This is done to have ability to insert SPS with VUI header with timing information containing the new framerate. If you want to change framerate just to manage bitrate control, you can use bitrate instead. The effect would be the same. |
Thanks. You are right. I just want to control the bitrate. I will try the method you said. |
I want to decrease| increase frame rate dynamically, But every time i call 'SetProperty(FrameRate)' will generate key frame automatically.
Is there any method can avoid this like nvenc?
The text was updated successfully, but these errors were encountered: