-
Notifications
You must be signed in to change notification settings - Fork 263
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
VOD HLS clip behaviour at the end of the clip #325
Comments
@zuzzurro |
Well, it seems that the Microsoft Smooth Streaming OSMF plugin at least behaves this way. |
Is "HLSEvent.PLAYBACK_COMPLETE" the event you mentioned above? |
ok, you are talking about OSMF.
Play Trait will be stopped upon playback complete related OSMF source code : https://github.com/willwh/osmf/blob/fac113c5fb7d6724992247be39106e1caa00fcfa/framework/OSMF/org/osmf/traits/PlayTrait.as#L173
Time Trait.signalComplete() will be called upon playback complete. related OSMF source code: https://github.com/willwh/osmf/blob/fac113c5fb7d6724992247be39106e1caa00fcfa/framework/OSMF/org/osmf/traits/TimeTrait.as#L198 then your player is listening to these OSMF events and doing some actions. |
Hi Guillaume
Our player supports various plugins for playing Smooth, HDS and now HLS. It's pretty difficult to maintain the various implementations aligned and sometimes we discover different behaviours.
In this case when playing a VOD clip what our player does is: at the end of the clip, seek back to 0.
The expected behaviour would be for player to be in pause at position 0. Pause because other plugins pause the video at the end. In the flashls case instead, the player starts playing from 0 becasue it does not pause at the end.
Do you consider your behaviour the correct one?
The text was updated successfully, but these errors were encountered: