walsh9 / videojs-transcript

▶️📃 Interactive transcript plugin for video.js
https://walsh9.github.io/videojs-transcript/example.html
MIT License
138 stars 54 forks source link

Videojs-transcript is not working with videojs version 7 #31

Open pradeepaanumalla opened 2 years ago

pradeepaanumalla commented 2 years ago

When I tried to use videojs-transcript with with videojs version 7.18 , its not working. But where as if I use videojs 4.12 then its working as expected. Can you give support for updated versions as well?

wemrekurt commented 1 month ago

Use tombyrer/videojs-transcript-click@1.0

var video = videojs('video')
video.ready(function(){
  var transcript = this.transcript();
  var transcriptContainer = document.querySelector('#transcript');
  transcriptContainer.appendChild(transcript.el());
});