Fix test embed page

pull/2356/head
Chocobozzz 2019-12-17 14:20:43 +01:00
parent c3b9379167
commit 6377a9f2b0
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
8 changed files with 96 additions and 18 deletions

View File

@ -77,6 +77,10 @@ class P2pMediaLoaderPlugin extends Plugin {
clearInterval(this.networkInfoInterval) clearInterval(this.networkInfoInterval)
} }
getHLSJS () {
return this.hlsjs
}
private initialize () { private initialize () {
initHlsJsPlayer(this.hlsjs) initHlsJsPlayer(this.hlsjs)

View File

@ -229,6 +229,10 @@ class WebTorrentPlugin extends Plugin {
this.trigger('resolutionChange', { auto: this.autoResolution, resolutionId: this.getCurrentResolutionId() }) this.trigger('resolutionChange', { auto: this.autoResolution, resolutionId: this.getCurrentResolutionId() })
} }
isAutoResolutionPossible () {
return this.autoResolutionPossible
}
getTorrent () { getTorrent () {
return this.torrent return this.torrent
} }

View File

@ -4,11 +4,15 @@ export type PlayerEventType =
'pause' | 'play' | 'pause' | 'play' |
'playbackStatusUpdate' | 'playbackStatusUpdate' |
'playbackStatusChange' | 'playbackStatusChange' |
'resolutionUpdate' 'resolutionUpdate' |
'volumeChange'
export interface PeerTubeResolution { export interface PeerTubeResolution {
id: any id: any
label: string label: string
src: string
active: boolean active: boolean
height: number
src?: string
width?: number
} }

View File

@ -7,7 +7,8 @@ const PASSTHROUGH_EVENTS = [
'play', 'play',
'playbackStatusUpdate', 'playbackStatusUpdate',
'playbackStatusChange', 'playbackStatusChange',
'resolutionUpdate' 'resolutionUpdate',
'volumeChange'
] ]
/** /**
@ -100,7 +101,7 @@ export class PeerTubePlayer {
* @param value A number from 0 to 1 * @param value A number from 0 to 1
*/ */
async getVolume (): Promise<number> { async getVolume (): Promise<number> {
return this.sendMessage<void, number>('setVolume') return this.sendMessage<void, number>('getVolume')
} }
/** /**

View File

@ -11,7 +11,7 @@ import { PeerTubeEmbed } from './embed'
export class PeerTubeEmbedApi { export class PeerTubeEmbedApi {
private channel: Channel.MessagingChannel private channel: Channel.MessagingChannel
private isReady = false private isReady = false
private resolutions: PeerTubeResolution[] = null private resolutions: PeerTubeResolution[] = []
constructor (private embed: PeerTubeEmbed) { constructor (private embed: PeerTubeEmbed) {
} }
@ -35,28 +35,40 @@ export class PeerTubeEmbedApi {
channel.bind('play', (txn, params) => this.embed.player.play()) channel.bind('play', (txn, params) => this.embed.player.play())
channel.bind('pause', (txn, params) => this.embed.player.pause()) channel.bind('pause', (txn, params) => this.embed.player.pause())
channel.bind('seek', (txn, time) => this.embed.player.currentTime(time)) channel.bind('seek', (txn, time) => this.embed.player.currentTime(time))
channel.bind('setVolume', (txn, value) => this.embed.player.volume(value)) channel.bind('setVolume', (txn, value) => this.embed.player.volume(value))
channel.bind('getVolume', (txn, value) => this.embed.player.volume()) channel.bind('getVolume', (txn, value) => this.embed.player.volume())
channel.bind('isReady', (txn, params) => this.isReady) channel.bind('isReady', (txn, params) => this.isReady)
channel.bind('setResolution', (txn, resolutionId) => this.setResolution(resolutionId)) channel.bind('setResolution', (txn, resolutionId) => this.setResolution(resolutionId))
channel.bind('getResolutions', (txn, params) => this.resolutions) channel.bind('getResolutions', (txn, params) => this.resolutions)
channel.bind('setPlaybackRate', (txn, playbackRate) => this.embed.player.playbackRate(playbackRate)) channel.bind('setPlaybackRate', (txn, playbackRate) => this.embed.player.playbackRate(playbackRate))
channel.bind('getPlaybackRate', (txn, params) => this.embed.player.playbackRate()) channel.bind('getPlaybackRate', (txn, params) => this.embed.player.playbackRate())
channel.bind('getPlaybackRates', (txn, params) => this.embed.playerOptions.playbackRates) channel.bind('getPlaybackRates', (txn, params) => this.embed.player.options_.playbackRates)
this.channel = channel this.channel = channel
} }
private setResolution (resolutionId: number) { private setResolution (resolutionId: number) {
if (resolutionId === -1 && this.embed.player.webtorrent().isAutoResolutionForbidden()) return console.log('set resolution %d', resolutionId)
if (this.isWebtorrent()) {
if (resolutionId === -1 && this.embed.player.webtorrent().isAutoResolutionPossible() === false) return
// Auto resolution
if (resolutionId === -1) {
this.embed.player.webtorrent().enableAutoResolution()
return
}
this.embed.player.webtorrent().disableAutoResolution()
this.embed.player.webtorrent().updateResolution(resolutionId)
// Auto resolution
if (resolutionId === -1) {
this.embed.player.webtorrent().enableAutoResolution()
return return
} }
this.embed.player.webtorrent().disableAutoResolution() this.embed.player.p2pMediaLoader().getHLSJS().nextLevel = resolutionId
this.embed.player.webtorrent().updateResolution(resolutionId)
} }
/** /**
@ -96,14 +108,24 @@ export class PeerTubeEmbedApi {
// PeerTube specific capabilities // PeerTube specific capabilities
if (this.embed.player.webtorrent) { if (this.isWebtorrent()) {
this.embed.player.webtorrent().on('autoResolutionUpdate', () => this.loadWebTorrentResolutions()) this.embed.player.webtorrent().on('autoResolutionUpdate', () => this.loadWebTorrentResolutions())
this.embed.player.webtorrent().on('videoFileUpdate', () => this.loadWebTorrentResolutions()) this.embed.player.webtorrent().on('videoFileUpdate', () => this.loadWebTorrentResolutions())
} else {
this.embed.player.p2pMediaLoader().on('resolutionChange', () => this.loadP2PMediaLoaderResolutions())
} }
this.embed.player.on('volumechange', () => {
this.channel.notify({
method: 'volumeChange',
params: this.embed.player.volume()
})
})
} }
private loadWebTorrentResolutions () { private loadWebTorrentResolutions () {
const resolutions = [] this.resolutions = []
const currentResolutionId = this.embed.player.webtorrent().getCurrentResolutionId() const currentResolutionId = this.embed.player.webtorrent().getCurrentResolutionId()
for (const videoFile of this.embed.player.webtorrent().videoFiles) { for (const videoFile of this.embed.player.webtorrent().videoFiles) {
@ -112,18 +134,46 @@ export class PeerTubeEmbedApi {
label += videoFile.fps label += videoFile.fps
} }
resolutions.push({ this.resolutions.push({
id: videoFile.resolution.id, id: videoFile.resolution.id,
label, label,
src: videoFile.magnetUri, src: videoFile.magnetUri,
active: videoFile.resolution.id === currentResolutionId active: videoFile.resolution.id === currentResolutionId,
height: videoFile.resolution.id
}) })
} }
this.resolutions = resolutions
this.channel.notify({ this.channel.notify({
method: 'resolutionUpdate', method: 'resolutionUpdate',
params: this.resolutions params: this.resolutions
}) })
} }
private loadP2PMediaLoaderResolutions () {
this.resolutions = []
const qualityLevels = this.embed.player.qualityLevels()
const currentResolutionId = this.embed.player.qualityLevels().selectedIndex
for (let i = 0; i < qualityLevels.length; i++) {
const level = qualityLevels[i]
this.resolutions.push({
id: level.id,
label: level.height + 'p',
active: level.id === currentResolutionId,
width: level.width,
height: level.height
})
}
this.channel.notify({
method: 'resolutionUpdate',
params: this.resolutions
})
}
private isWebtorrent () {
return this.embed.player.webtorrent
}
} }

View File

@ -23,7 +23,6 @@ import { TranslationsManager } from '../../assets/player/translations-manager'
export class PeerTubeEmbed { export class PeerTubeEmbed {
videoElement: HTMLVideoElement videoElement: HTMLVideoElement
player: any player: any
playerOptions: any
api: PeerTubeEmbedApi = null api: PeerTubeEmbedApi = null
autoplay: boolean autoplay: boolean
controls: boolean controls: boolean

View File

@ -25,6 +25,8 @@
<button onclick="player.play()">Play</button> <button onclick="player.play()">Play</button>
<button onclick="player.pause()">Pause</button> <button onclick="player.pause()">Pause</button>
<button onclick="player.seek(parseInt(prompt('Enter position to seek to (in seconds)')))">Seek</button> <button onclick="player.seek(parseInt(prompt('Enter position to seek to (in seconds)')))">Seek</button>
<button onclick="player.setVolume(0)">Mute</button>
<button onclick="player.setVolume(1)">Unmute</button>
</div> </div>
<br/> <br/>
@ -39,6 +41,11 @@
<legend>Rates:</legend> <legend>Rates:</legend>
<div id="rate-list"></div> <div id="rate-list"></div>
</fieldset> </fieldset>
<fieldset>
<legend>Volume</legend>
<div id="volume"></div>
</fieldset>
</div> </div>
</div> </div>

View File

@ -9,6 +9,7 @@ window.addEventListener('load', async () => {
const iframe = document.createElement('iframe') const iframe = document.createElement('iframe')
iframe.src = `/videos/embed/${videoId}?autoplay=1&controls=0&api=1` iframe.src = `/videos/embed/${videoId}?autoplay=1&controls=0&api=1`
const mainElement = document.querySelector('#host') const mainElement = document.querySelector('#host')
mainElement.appendChild(iframe) mainElement.appendChild(iframe)
@ -93,4 +94,12 @@ window.addEventListener('load', async () => {
resolutions => updateResolutions(resolutions)) resolutions => updateResolutions(resolutions))
player.addEventListener('resolutionUpdate', player.addEventListener('resolutionUpdate',
resolutions => updateResolutions(resolutions)) resolutions => updateResolutions(resolutions))
const updateVolume = (volume: number) => {
const volumeEl = document.getElementById('volume')
volumeEl.innerText = (volume * 100) + '%'
}
player.getVolume().then(volume => updateVolume(volume))
player.addEventListener('volumeChange', volume => updateVolume(volume))
}) })