zhw2590582 / ArtPlayer

:art: ArtPlayer.js is a modern and full featured HTML5 video player
https://artplayer.org
MIT License
2.49k stars 264 forks source link

update the video quality list while playing #707

Closed jedgarf closed 6 months ago

jedgarf commented 6 months ago

how to update the video quality list only while playing video?

zhw2590582 commented 6 months ago

https://artplayer.org/document/en/component/controls.html#update

demo%3B%0A%0Aart.on(%27ready%27%2C%20()%20%3D%3E%20%7B%0A%09setTimeout(()%20%3D%3E%20%7B%0A%09%09%2F%2F%20Update%20the%20control%20by%20name%0A%09%09art.controls.update(%7B%0A%09%09%09name%3A%20%27quality%27%2C%0A%09%09%09html%3A%20%271080%27%2C%0A%09%09%09selector%3A%20%5B%0A%09%09%09%09%7B%0A%09%09%09%09%09default%3A%20true%2C%0A%09%09%09%09%09html%3A%20%271080%27%2C%0A%09%09%09%09%09url%3A%20%27%2Fnew%2Fvideo.mp4%3Fp%3D1080%27%2C%0A%09%09%09%09%7D%2C%0A%09%09%09%09%7B%0A%09%09%09%09%09html%3A%20%27720%27%2C%0A%09%09%09%09%09url%3A%20%27%2Fnew%2Fvideo.mp4%3Fp%3D720%27%2C%0A%09%09%09%09%7D%2C%0A%09%09%09%5D%2C%0A%09%09%7D)%3B%0A%09%7D%2C%203000)%3B%0A%7D)%3B)

jedgarf commented 6 months ago

thanks