Added some links for documentation

This commit is contained in:
Kylart 2018-03-31 05:50:41 +02:00
parent 51b9a5457c
commit 39961d371f
1 changed files with 3 additions and 1 deletions

View File

@ -1,7 +1,9 @@
import _ from 'lodash'
export default function (subtitle, styles, info) {
// Following the ass-specs http://www.cccp-project.net/stuff/ass-specs.pdf
// Following the ass-specs: http://www.cccp-project.net/stuff/ass-specs.pdf
// Position testing can somewhat be done here : http://ronallo.com/demos/webvtt-cue-settings/
// WebVTT documentation: https://developer.mozilla.org/en-US/docs/Web/API/WebVTT_API
const { time, duration, text } = subtitle
const result = new window.VTTCue(time / 1000, (time + duration) / 1000, text)