
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
@packt/videojs-transcript
Advanced tools
Forked from: https://github.com/mediaplatform/videojs-transcript Original: https://github.com/walsh9/videojs-transcript
Creates interactive transcripts from text tracks.
Once you've added the plugin script to your page, you can use it with any video:
<head>
<script src="video.js"></script>
<script src="videojs-transcript.js"></script>
</head>
<body>
<video id="video">
<source src="whatever.webm" type="video/webm">
<track kind="captions" src="mycaptions.srt" srclang="en" label="English" default>
</video>
<div id="transcript"></div>
<script>
var video = videojs('video').ready(function(){
// Set up any options.
var options = {
showTitle: false,
showTrackSelector: false,
};
// Initialize the plugin.
var transcript = this.transcript(options);
// Then attach the widget to the page.
var transcriptContainer = document.querySelector('#transcript');
transcriptContainer.appendChild(transcript.el());
});
</script>
</body>
There's also a working example of the plugin you can check out if you're having trouble.
You'll also want to include one of the css files. You can style the plugin as you like but there are a few examples in the /css folder to get you started.
You may pass in an options object to the plugin upon initialization. This object may contain any of the following properties:
Default: true
Set to false to disable autoscrolling.
Default: 'line'
Set which elements in the transcript are clickable. Options are 'timestamp', 'text', the whole 'line', or 'none'.
Default: true
Show a title with the transcript widget.
(Currently the title only says 'Transcript')
Default: true
Show a track selector with the transcript widget.
Default: true
When you change the caption track on the video, the transcript changes tracks as well.
Default: true
Don't autoscroll the transcript when the user is trying to scroll it.
(This probably still has a few glitches to work out on touch screens and stuff right now)
el()
Returns the DOM element containing the html transcript widget. You'll need to append this to your page.
FAQs
Creates interactive transcripts from text tracks.
We found that @packt/videojs-transcript demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.