Replies: 2 comments 7 replies
-
|
Hi @zjarri, did you try to set this? Config.Player.MaxLatency = TimeSpan.FromMilliseconds(500).Ticks; |
Beta Was this translation helpful? Give feedback.
7 replies
-
|
Bit late but this might fixed it now 9c8caff It seems that FFmpeg sets the skip_frame to Default which might drop frames in rtsp/udp etc... |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have an RTSP stream that I'd like to display in my WinUI3 application. Since I need the stream to playback as close as possible to "realtime," I've set the following flags, which work fine for me:
Config.Demuxer.FormatOpt["fflags"] = "nobuffer";Config.Decoder.LowDelay = true;Basically, after setting the buffer to 0, the desired result is achieved. However, here comes my issue. When the same input source is played on either ffplay or VLC, everything works correctly—the timing is right, and the video is smooth. But when played through Flyleaf, the timing remains correct, but the video feels like it's playing at only half the FPS; it is not smooth at all.
What can I do about this?
Beta Was this translation helpful? Give feedback.
All reactions