Fix and enhance captions subsystem
This commit is contained in:
parent
310e4cac09
commit
3e8b137f67
|
@ -51,7 +51,7 @@ export default Vue.extend({
|
||||||
type: Array,
|
type: Array,
|
||||||
default: null
|
default: null
|
||||||
},
|
},
|
||||||
captionList: {
|
captionHybridList: {
|
||||||
type: Array,
|
type: Array,
|
||||||
default: () => { return [] }
|
default: () => { return [] }
|
||||||
},
|
},
|
||||||
|
@ -196,6 +196,7 @@ export default Vue.extend({
|
||||||
|
|
||||||
this.player = videojs(videoPlayer, {
|
this.player = videojs(videoPlayer, {
|
||||||
html5: {
|
html5: {
|
||||||
|
preloadTextTracks: false,
|
||||||
vhs: {
|
vhs: {
|
||||||
limitRenditionByPlayerDimensions: false,
|
limitRenditionByPlayerDimensions: false,
|
||||||
smoothQualityChange: false,
|
smoothQualityChange: false,
|
||||||
|
@ -246,6 +247,9 @@ export default Vue.extend({
|
||||||
this.player.on('ready', function () {
|
this.player.on('ready', function () {
|
||||||
v.$emit('ready')
|
v.$emit('ready')
|
||||||
v.checkAspectRatio()
|
v.checkAspectRatio()
|
||||||
|
if (v.captionHybridList.length !== 0) {
|
||||||
|
v.transformAndInsertCaptions()
|
||||||
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
this.player.on('ended', function () {
|
this.player.on('ended', function () {
|
||||||
|
@ -716,6 +720,26 @@ export default Vue.extend({
|
||||||
this.determineDefaultQualityDash()
|
this.determineDefaultQualityDash()
|
||||||
},
|
},
|
||||||
|
|
||||||
|
transformAndInsertCaptions: async function() {
|
||||||
|
let captionList
|
||||||
|
if (this.captionHybridList[0] instanceof Promise) {
|
||||||
|
captionList = await Promise.all(this.captionHybridList)
|
||||||
|
this.$emit('store-caption-list', captionList)
|
||||||
|
} else {
|
||||||
|
captionList = this.captionHybridList
|
||||||
|
}
|
||||||
|
|
||||||
|
for (const caption of captionList) {
|
||||||
|
this.player.addRemoteTextTrack({
|
||||||
|
kind: 'subtitles',
|
||||||
|
src: caption.baseUrl || caption.url,
|
||||||
|
srclang: caption.languageCode,
|
||||||
|
label: caption.label || caption.name.simpleText,
|
||||||
|
type: caption.type
|
||||||
|
}, true)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
toggleFullWindow: function() {
|
toggleFullWindow: function() {
|
||||||
if (!this.player.isFullscreen_) {
|
if (!this.player.isFullscreen_) {
|
||||||
if (this.player.isFullWindow) {
|
if (this.player.isFullWindow) {
|
||||||
|
|
|
@ -69,7 +69,7 @@ export default Vue.extend({
|
||||||
activeSourceList: [],
|
activeSourceList: [],
|
||||||
videoSourceList: [],
|
videoSourceList: [],
|
||||||
audioSourceList: [],
|
audioSourceList: [],
|
||||||
captionSourceList: [],
|
captionHybridList: [], // [] -> Promise[] -> string[] (URIs)
|
||||||
recommendedVideos: [],
|
recommendedVideos: [],
|
||||||
downloadLinks: [],
|
downloadLinks: [],
|
||||||
watchingPlaylist: false,
|
watchingPlaylist: false,
|
||||||
|
@ -153,7 +153,7 @@ export default Vue.extend({
|
||||||
this.firstLoad = true
|
this.firstLoad = true
|
||||||
this.activeFormat = this.defaultVideoFormat
|
this.activeFormat = this.defaultVideoFormat
|
||||||
this.videoStoryboardSrc = ''
|
this.videoStoryboardSrc = ''
|
||||||
this.captionSourceList = []
|
this.captionHybridList = []
|
||||||
this.downloadLinks = []
|
this.downloadLinks = []
|
||||||
|
|
||||||
this.checkIfPlaylist()
|
this.checkIfPlaylist()
|
||||||
|
@ -290,17 +290,6 @@ export default Vue.extend({
|
||||||
this.isLiveContent = result.player_response.videoDetails.isLiveContent
|
this.isLiveContent = result.player_response.videoDetails.isLiveContent
|
||||||
this.isUpcoming = result.player_response.videoDetails.isUpcoming ? result.player_response.videoDetails.isUpcoming : false
|
this.isUpcoming = result.player_response.videoDetails.isUpcoming ? result.player_response.videoDetails.isUpcoming : false
|
||||||
|
|
||||||
if (!this.isLive && !this.isUpcoming) {
|
|
||||||
const captionTracks =
|
|
||||||
result.player_response.captions &&
|
|
||||||
result.player_response.captions.playerCaptionsTracklistRenderer
|
|
||||||
.captionTracks
|
|
||||||
|
|
||||||
if (typeof captionTracks !== 'undefined') {
|
|
||||||
await this.createCaptionUrls(captionTracks)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (this.videoDislikeCount === null && !this.hideVideoLikesAndDislikes) {
|
if (this.videoDislikeCount === null && !this.hideVideoLikesAndDislikes) {
|
||||||
this.videoDislikeCount = 0
|
this.videoDislikeCount = 0
|
||||||
}
|
}
|
||||||
|
@ -387,16 +376,22 @@ export default Vue.extend({
|
||||||
|
|
||||||
return object
|
return object
|
||||||
})
|
})
|
||||||
let captionLinks = result.player_response.captions
|
|
||||||
if (typeof captionLinks !== 'undefined') {
|
const captionTracks =
|
||||||
captionLinks = captionLinks.playerCaptionsTracklistRenderer.captionTracks.map((caption) => {
|
result.player_response.captions &&
|
||||||
|
result.player_response.captions.playerCaptionsTracklistRenderer
|
||||||
|
.captionTracks
|
||||||
|
|
||||||
|
if (typeof captionTracks !== 'undefined') {
|
||||||
|
this.captionHybridList = this.createCaptionPromiseList(captionTracks)
|
||||||
|
|
||||||
|
const captionLinks = captionTracks.map((caption) => {
|
||||||
const label = `${caption.name.simpleText} (${caption.languageCode}) - text/vtt`
|
const label = `${caption.name.simpleText} (${caption.languageCode}) - text/vtt`
|
||||||
const object = {
|
|
||||||
|
return {
|
||||||
url: caption.baseUrl,
|
url: caption.baseUrl,
|
||||||
label: label
|
label: label
|
||||||
}
|
}
|
||||||
|
|
||||||
return object
|
|
||||||
})
|
})
|
||||||
|
|
||||||
this.downloadLinks = this.downloadLinks.concat(captionLinks)
|
this.downloadLinks = this.downloadLinks.concat(captionLinks)
|
||||||
|
@ -525,7 +520,7 @@ export default Vue.extend({
|
||||||
this.videoDescriptionHtml = result.descriptionHtml
|
this.videoDescriptionHtml = result.descriptionHtml
|
||||||
this.recommendedVideos = result.recommendedVideos
|
this.recommendedVideos = result.recommendedVideos
|
||||||
this.isLive = result.liveNow
|
this.isLive = result.liveNow
|
||||||
this.captionSourceList = result.captions.map(caption => {
|
this.captionHybridList = result.captions.map(caption => {
|
||||||
caption.url = this.invidiousInstance + caption.url
|
caption.url = this.invidiousInstance + caption.url
|
||||||
caption.type = ''
|
caption.type = ''
|
||||||
caption.dataSource = 'invidious'
|
caption.dataSource = 'invidious'
|
||||||
|
@ -1047,29 +1042,43 @@ export default Vue.extend({
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
createCaptionUrls: function (captionTracks) {
|
createCaptionPromiseList: function (captionTracks) {
|
||||||
this.captionSourceList = captionTracks.map(caption => {
|
return captionTracks.map(caption => new Promise((resolve, reject) => {
|
||||||
caption.type = 'text/vtt'
|
caption.type = 'text/vtt'
|
||||||
caption.charset = 'charset=utf-8'
|
caption.charset = 'charset=utf-8'
|
||||||
caption.dataSource = 'local'
|
caption.dataSource = 'local'
|
||||||
|
caption.baseUrl += '&fmt=vtt'
|
||||||
|
|
||||||
$.get(caption.baseUrl, response => {
|
$.get(caption.baseUrl, response => {
|
||||||
xml2vtt
|
// The character '#' needs to be percent-encoded in a (data) URI
|
||||||
.Parse(new XMLSerializer().serializeToString(response))
|
// because it signals an identifier, which means anything after it
|
||||||
.then(vtt => {
|
// is automatically removed when the URI is used as a source
|
||||||
caption.baseUrl = `data:${caption.type};${caption.charset},${vtt}`
|
let vtt = response.replace(/#/g, '%23')
|
||||||
})
|
|
||||||
.catch(err =>
|
// A lot of videos have messed up caption positions that need to be removed
|
||||||
console.log(`Error while converting XML to VTT : ${err}`)
|
// This can be either because this format isn't really used by YouTube
|
||||||
)
|
// or because it's expected for the player to be able to somehow
|
||||||
|
// wrap the captions so that they won't step outside its boundaries
|
||||||
|
//
|
||||||
|
// Auto-generated captions are also all aligned to the start
|
||||||
|
// so those instances must also be removed
|
||||||
|
// In addition, all aligns seem to be fixed to "start" when they do pop up in normal captions
|
||||||
|
// If it's prominent enough that people start to notice, it can be removed then
|
||||||
|
if (caption.kind === 'asr') {
|
||||||
|
vtt = vtt.replace(/ align:start| position:\d{1,3}%/g, '')
|
||||||
|
} else {
|
||||||
|
vtt = vtt.replace(/ position:\d{1,3}%/g, '')
|
||||||
|
}
|
||||||
|
|
||||||
|
caption.baseUrl = `data:${caption.type};${caption.charset},${vtt}`
|
||||||
|
resolve(caption)
|
||||||
}).fail((xhr, textStatus, error) => {
|
}).fail((xhr, textStatus, error) => {
|
||||||
console.log(xhr)
|
console.log(xhr)
|
||||||
console.log(textStatus)
|
console.log(textStatus)
|
||||||
console.log(error)
|
console.log(error)
|
||||||
|
reject(error)
|
||||||
})
|
})
|
||||||
|
}))
|
||||||
return caption
|
|
||||||
})
|
|
||||||
},
|
},
|
||||||
|
|
||||||
getWatchedProgress: function () {
|
getWatchedProgress: function () {
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
ref="videoPlayer"
|
ref="videoPlayer"
|
||||||
:dash-src="dashSrc"
|
:dash-src="dashSrc"
|
||||||
:source-list="activeSourceList"
|
:source-list="activeSourceList"
|
||||||
:caption-list="captionSourceList"
|
:caption-hybrid-list="captionHybridList"
|
||||||
:storyboard-src="videoStoryboardSrc"
|
:storyboard-src="videoStoryboardSrc"
|
||||||
:format="activeFormat"
|
:format="activeFormat"
|
||||||
:thumbnail="thumbnail"
|
:thumbnail="thumbnail"
|
||||||
|
@ -27,6 +27,7 @@
|
||||||
@ready="checkIfWatched"
|
@ready="checkIfWatched"
|
||||||
@ended="handleVideoEnded"
|
@ended="handleVideoEnded"
|
||||||
@error="handleVideoError"
|
@error="handleVideoError"
|
||||||
|
@store-caption-list="captionHybridList = $event"
|
||||||
/>
|
/>
|
||||||
<div
|
<div
|
||||||
v-if="!isLoading && isUpcoming"
|
v-if="!isLoading && isUpcoming"
|
||||||
|
|
Loading…
Reference in New Issue