videojs / http-streaming

HLS, DASH, and future HTTP streaming protocols library for video.js
https://videojs-http-streaming.netlify.app/
Other
2.45k stars 416 forks source link

How to get the VOD/live property of the current playing stream from player? #1503

Closed snowinszu closed 1 month ago

snowinszu commented 2 months ago

How to get the VOD/live property of the current playing stream from player?

mister-ben commented 1 month ago

If live, player.duration() returns Infinity.

If using the LiveTracker there is also player.liveTracker.isLive().

snowinszu commented 1 month ago

Thanks.