1
0
Fork 0

Set last subtitle or subtitle in URL

This commit is contained in:
Chocobozzz 2018-12-17 14:14:54 +01:00
parent 259dd796e6
commit 3b019808ef
No known key found for this signature in database
GPG key ID: 583A612D890159BE
6 changed files with 81 additions and 41 deletions

View file

@ -60,6 +60,14 @@ function getAverageBandwidthInStore () {
return undefined return undefined
} }
function saveLastSubtitle (language: string) {
return setLocalStorage('last-subtitle', language)
}
function getStoredLastSubtitle () {
return getLocalStorage('last-subtitle')
}
// --------------------------------------------------------------------------- // ---------------------------------------------------------------------------
export { export {
@ -71,7 +79,9 @@ export {
saveMuteInStore, saveMuteInStore,
saveTheaterInStore, saveTheaterInStore,
saveAverageBandwidth, saveAverageBandwidth,
getAverageBandwidthInStore getAverageBandwidthInStore,
saveLastSubtitle,
getStoredLastSubtitle
} }
// --------------------------------------------------------------------------- // ---------------------------------------------------------------------------

View file

@ -26,23 +26,24 @@ videojsUntyped.getComponent('CaptionsButton').prototype.controlText_ = 'Subtitle
videojsUntyped.getComponent('CaptionsButton').prototype.label_ = ' ' videojsUntyped.getComponent('CaptionsButton').prototype.label_ = ' '
function getVideojsOptions (options: { function getVideojsOptions (options: {
autoplay: boolean, autoplay: boolean
playerElement: HTMLVideoElement, playerElement: HTMLVideoElement
videoViewUrl: string, videoViewUrl: string
videoDuration: number, videoDuration: number
videoFiles: VideoFile[], videoFiles: VideoFile[]
enableHotkeys: boolean, enableHotkeys: boolean
inactivityTimeout: number, inactivityTimeout: number
peertubeLink: boolean, peertubeLink: boolean
poster: string, poster: string
startTime: number | string startTime: number | string
theaterMode: boolean, theaterMode: boolean
videoCaptions: VideoJSCaption[], videoCaptions: VideoJSCaption[]
language?: string, language?: string
controls?: boolean, controls?: boolean
muted?: boolean, muted?: boolean
loop?: boolean loop?: boolean
subtitle?: string
userWatching?: UserWatching userWatching?: UserWatching
}) { }) {
@ -50,8 +51,10 @@ function getVideojsOptions (options: {
// We don't use text track settings for now // We don't use text track settings for now
textTrackSettings: false, textTrackSettings: false,
controls: options.controls !== undefined ? options.controls : true, controls: options.controls !== undefined ? options.controls : true,
muted: options.controls !== undefined ? options.muted : false,
loop: options.loop !== undefined ? options.loop : false, loop: options.loop !== undefined ? options.loop : false,
muted: options.muted !== undefined ? options.muted : undefined, // Undefined so the player knows it has to check the local storage
poster: options.poster, poster: options.poster,
autoplay: false, autoplay: false,
inactivityTimeout: options.inactivityTimeout, inactivityTimeout: options.inactivityTimeout,
@ -65,7 +68,8 @@ function getVideojsOptions (options: {
videoViewUrl: options.videoViewUrl, videoViewUrl: options.videoViewUrl,
videoDuration: options.videoDuration, videoDuration: options.videoDuration,
startTime: options.startTime, startTime: options.startTime,
userWatching: options.userWatching userWatching: options.userWatching,
subtitle: options.subtitle
} }
}, },
controlBar: { controlBar: {

View file

@ -11,10 +11,12 @@ import { isMobile, timeToInt, videoFileMaxByResolution, videoFileMinByResolution
import { PeertubeChunkStore } from './peertube-chunk-store' import { PeertubeChunkStore } from './peertube-chunk-store'
import { import {
getAverageBandwidthInStore, getAverageBandwidthInStore,
getStoredLastSubtitle,
getStoredMute, getStoredMute,
getStoredVolume, getStoredVolume,
getStoredWebTorrentEnabled, getStoredWebTorrentEnabled,
saveAverageBandwidth, saveAverageBandwidth,
saveLastSubtitle,
saveMuteInStore, saveMuteInStore,
saveVolumeInStore saveVolumeInStore
} from './peertube-player-local-storage' } from './peertube-player-local-storage'
@ -67,10 +69,11 @@ class PeerTubePlugin extends Plugin {
private currentVideoFile: VideoFile private currentVideoFile: VideoFile
private torrent: WebTorrent.Torrent private torrent: WebTorrent.Torrent
private videoCaptions: VideoJSCaption[] private videoCaptions: VideoJSCaption[]
private defaultSubtitle: string
private renderer: any private renderer: any
private fakeRenderer: any private fakeRenderer: any
private destoyingFakeRenderer = false private destroyingFakeRenderer = false
private autoResolution = true private autoResolution = true
private forbidAutoResolution = false private forbidAutoResolution = false
@ -106,11 +109,34 @@ class PeerTubePlugin extends Plugin {
if (this.autoplay === true) this.player.addClass('vjs-has-autoplay') if (this.autoplay === true) this.player.addClass('vjs-has-autoplay')
this.player.ready(() => { this.player.ready(() => {
const playerOptions = this.player.options_
const volume = getStoredVolume() const volume = getStoredVolume()
if (volume !== undefined) this.player.volume(volume) if (volume !== undefined) this.player.volume(volume)
const muted = getStoredMute()
const muted = playerOptions.muted !== undefined ? playerOptions.muted : getStoredMute()
if (muted !== undefined) this.player.muted(muted) if (muted !== undefined) this.player.muted(muted)
this.defaultSubtitle = options.subtitle || getStoredLastSubtitle()
this.player.on('volumechange', () => {
saveVolumeInStore(this.player.volume())
saveMuteInStore(this.player.muted())
})
this.player.textTracks().on('change', () => {
const showing = this.player.textTracks().tracks_.find((t: { kind: string, mode: string }) => {
return t.kind === 'captions' && t.mode === 'showing'
})
if (!showing) {
saveLastSubtitle('off')
return
}
saveLastSubtitle(showing.language)
})
this.player.duration(options.videoDuration) this.player.duration(options.videoDuration)
this.initializePlayer() this.initializePlayer()
@ -124,11 +150,6 @@ class PeerTubePlugin extends Plugin {
this.runAutoQualitySchedulerTimer = setTimeout(() => this.runAutoQualityScheduler(), this.CONSTANTS.AUTO_QUALITY_SCHEDULER) this.runAutoQualitySchedulerTimer = setTimeout(() => this.runAutoQualityScheduler(), this.CONSTANTS.AUTO_QUALITY_SCHEDULER)
}) })
}) })
this.player.on('volumechange', () => {
saveVolumeInStore(this.player.volume())
saveMuteInStore(this.player.muted())
})
} }
dispose () { dispose () {
@ -657,14 +678,14 @@ class PeerTubePlugin extends Plugin {
} }
private renderFileInFakeElement (file: WebTorrent.TorrentFile, delay: number) { private renderFileInFakeElement (file: WebTorrent.TorrentFile, delay: number) {
this.destoyingFakeRenderer = false this.destroyingFakeRenderer = false
const fakeVideoElem = document.createElement('video') const fakeVideoElem = document.createElement('video')
renderVideo(file, fakeVideoElem, { autoplay: false, controls: false }, (err, renderer) => { renderVideo(file, fakeVideoElem, { autoplay: false, controls: false }, (err, renderer) => {
this.fakeRenderer = renderer this.fakeRenderer = renderer
// The renderer returns an error when we destroy it, so skip them // The renderer returns an error when we destroy it, so skip them
if (this.destoyingFakeRenderer === false && err) { if (this.destroyingFakeRenderer === false && err) {
console.error('Cannot render new torrent in fake video element.', err) console.error('Cannot render new torrent in fake video element.', err)
} }
@ -675,7 +696,7 @@ class PeerTubePlugin extends Plugin {
private destroyFakeRenderer () { private destroyFakeRenderer () {
if (this.fakeRenderer) { if (this.fakeRenderer) {
this.destoyingFakeRenderer = true this.destroyingFakeRenderer = true
if (this.fakeRenderer.destroy) { if (this.fakeRenderer.destroy) {
try { try {
@ -695,7 +716,8 @@ class PeerTubePlugin extends Plugin {
label: caption.label, label: caption.label,
language: caption.language, language: caption.language,
id: caption.language, id: caption.language,
src: caption.src src: caption.src,
default: this.defaultSubtitle === caption.language
}, false) }, false)
} }
} }

View file

@ -39,6 +39,7 @@ type PeertubePluginOptions = {
autoplay: boolean, autoplay: boolean,
videoCaptions: VideoJSCaption[] videoCaptions: VideoJSCaption[]
subtitle?: string
userWatching?: UserWatching userWatching?: UserWatching
} }

View file

@ -39,6 +39,7 @@ function buildVideoLink (time?: number, url?: string) {
} }
function timeToInt (time: number | string) { function timeToInt (time: number | string) {
if (!time) return 0
if (typeof time === 'number') return time if (typeof time === 'number') return time
const reg = /^((\d+)h)?((\d+)m)?((\d+)s?)?$/ const reg = /^((\d+)h)?((\d+)m)?((\d+)s?)?$/

View file

@ -157,10 +157,11 @@ class PeerTubeEmbed {
player: any player: any
playerOptions: any playerOptions: any
api: PeerTubeEmbedApi = null api: PeerTubeEmbedApi = null
autoplay = false autoplay: boolean
controls = true controls: boolean
muted = false muted: boolean
loop = false loop: boolean
subtitle: string
enableApi = false enableApi = false
startTime: number | string = 0 startTime: number | string = 0
scope = 'peertube' scope = 'peertube'
@ -214,11 +215,11 @@ class PeerTubeEmbed {
this.displayError(text) this.displayError(text)
} }
getParamToggle (params: URLSearchParams, name: string, defaultValue: boolean) { getParamToggle (params: URLSearchParams, name: string, defaultValue?: boolean) {
return params.has(name) ? (params.get(name) === '1' || params.get(name) === 'true') : defaultValue return params.has(name) ? (params.get(name) === '1' || params.get(name) === 'true') : defaultValue
} }
getParamString (params: URLSearchParams, name: string, defaultValue: string) { getParamString (params: URLSearchParams, name: string, defaultValue?: string) {
return params.has(name) ? params.get(name) : defaultValue return params.has(name) ? params.get(name) : defaultValue
} }
@ -241,15 +242,15 @@ class PeerTubeEmbed {
try { try {
let params = new URL(window.location.toString()).searchParams let params = new URL(window.location.toString()).searchParams
this.autoplay = this.getParamToggle(params, 'autoplay', this.autoplay) this.autoplay = this.getParamToggle(params, 'autoplay')
this.controls = this.getParamToggle(params, 'controls', this.controls) this.controls = this.getParamToggle(params, 'controls')
this.muted = this.getParamToggle(params, 'muted', this.muted) this.muted = this.getParamToggle(params, 'muted')
this.loop = this.getParamToggle(params, 'loop', this.loop) this.loop = this.getParamToggle(params, 'loop')
this.enableApi = this.getParamToggle(params, 'api', this.enableApi) this.enableApi = this.getParamToggle(params, 'api', this.enableApi)
this.scope = this.getParamString(params, 'scope', this.scope)
const startTimeParamString = params.get('start') this.scope = this.getParamString(params, 'scope', this.scope)
if (startTimeParamString) this.startTime = startTimeParamString this.subtitle = this.getParamString(params, 'subtitle')
this.startTime = this.getParamString(params, 'start')
} catch (err) { } catch (err) {
console.error('Cannot get params from URL.', err) console.error('Cannot get params from URL.', err)
} }
@ -291,6 +292,7 @@ class PeerTubeEmbed {
muted: this.muted, muted: this.muted,
loop: this.loop, loop: this.loop,
startTime: this.startTime, startTime: this.startTime,
subtitle: this.subtitle,
videoCaptions, videoCaptions,
inactivityTimeout: 1500, inactivityTimeout: 1500,