You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem
In our software, the user has the ability to switch to another rendered scene and this is sometimes setup in the way that some videos that were paused need :
to reset to start position : seek(0)
then switch from paused to playing
This rendered scene switch is not predictable, it is made by the user so we cannot prepare the players before the switch is asked
There are circumstances where there is a perceivable delay between the seek(0) request and the video actually restarting.
That is problematic for our users as they experience this as a lag
NB : this happens even though we do the seek(0) call before the setState(mdk::State::Playing)call
Wanted solution
An optionnal setting that would allow instantaneous restart of videos. This would probably involve a small tradeoff in memory for storing the first frames of the start of the video.
Is this by any means already possible ?
Regards
The text was updated successfully, but these errors were encountered:
What decoder are you using? Threading is enabled by default for all decoders, the delayed frames is thread count, event for the key frame decoding. I'm not sure the relationship between delay time and threads. Software decoder is slow. But hw decoders should be fast enough.
The problem
In our software, the user has the ability to switch to another rendered scene and this is sometimes setup in the way that some videos that were paused need :
seek(0)
This rendered scene switch is not predictable, it is made by the user so we cannot
prepare
the players before the switch is askedThere are circumstances where there is a perceivable delay between the
seek(0)
request and the video actually restarting.That is problematic for our users as they experience this as a lag
NB : this happens even though we do the
seek(0)
call before thesetState(mdk::State::Playing)
callWanted solution
An optionnal setting that would allow instantaneous restart of videos. This would probably involve a small tradeoff in memory for storing the first frames of the start of the video.
Is this by any means already possible ?
Regards
The text was updated successfully, but these errors were encountered: