How to have smooth playback experience in playlists? #4879
-
The loading time between two mp4 files is long after creating the playlist with mp4 URLs, and the stream is not running smoothly. Please let me know if this can be resolved by changing some server settings. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Let me explain the best practices for that. I hope it helps. Improve WebRTC Playback Experience ATTENTION: It does not make sense to play the stream with WebRTC because it’s already recorded file and there is no ultra low latency requirement. It make sense to play the stream with HLS. Just keep in mind that WebRTC playback uses more processing resources than the HLS. Even if you would like to decrease the amount of time to switch streams, please read the followings.
Improve HLS Playback Experience
Let me explain what it means.
|
Beta Was this translation helpful? Give feedback.
-
Hi All, For more details check the application configuration document https://antmedia.io/docs/guides/configuration-and-testing/ams-application-configuration/ Thank you. |
Beta Was this translation helpful? Give feedback.
Let me explain the best practices for that. I hope it helps.
Improve WebRTC Playback Experience
ATTENTION: It does not make sense to play the stream with WebRTC because it’s already recorded file and there is no ultra low latency requirement. It make sense to play the stream with HLS. Just keep in mind that WebRTC playback uses more processing resources than the HLS. Even if you would like to decrease the amount of time to switch streams, please read the followings.
/usr/local/antmedia/webapps/{YOUR_APP}/play.html
) Find thegenericCallback
method and decrease the timeout value from3000
to1000
or even lower at the end of thegenericCallback
method. <https://gith…