siloor / youtube.external.subtitle

Add subtitle to Embedded YouTube videos
https://siloor.github.io/youtube.external.subtitle/
MIT License
137 stars 31 forks source link

how to clear / unload subtitles from video #24

Closed shaktis110 closed 2 years ago

shaktis110 commented 2 years ago

hello, sir thanks for this awesome project. I just want to know how to unload (clear) subtitles from a video

milan-magyar commented 2 years ago

Hello @shaktis110 !

I'm glad that you find the project useful.

The YoutubeExternalSubtitle.Subtitle class has a public destroy method.

You can use it like:

var youtubeExternalSubtitle = new YoutubeExternalSubtitle.Subtitle(videoElement, subtitle);

youtubeExternalSubtitle.destroy();
shaktis110 commented 2 years ago

thank you so much sir