1.1.0 • Published 9 years ago

extracast-subtitles v1.1.0

Weekly downloads
2
License
GPL-3.0
Repository
github
Last release
9 years ago

extracast-subtitles

Subtitle module used by the Extracast media player.

Basic Example

  //pass the element you want the subtitles to be rendered in
  var videoSubtitles = new ecSubtitles(document.getElementById("video-subtitles"));

  //load the subtitles file
  videoSubtitles.load("/subtitles.srt", function(err){
    console.log("Subtitles loaded!")
  });

  video.ontimeupdate = function(){
    //update the playtime
    videoSubtitles.timeupdate(video.currentTime);    
  }
1.1.0

9 years ago

1.0.0

9 years ago