await myAccountPage.playPlaylist()
- await videoWatchPage.waitUntilVideoName(video2Name, 30 * 1000)
+ await videoWatchPage.waitUntilVideoName(video2Name, 40 * 1000)
})
it('Should watch the webtorrent playlist in the embed', async () => {
export class PeertubePlayerManager {
private static playerElementClassName: string
+ private static playerElementAttributes: { name: string, value: string }[] = []
+
private static onPlayerChange: (player: videojs.Player) => void
private static alreadyPlayed = false
private static pluginsManager: PluginsManager
this.pluginsManager = options.pluginsManager
this.onPlayerChange = onPlayerChange
+
this.playerElementClassName = options.common.playerElement.className
+ for (const name of options.common.playerElement.getAttributeNames()) {
+ this.playerElementAttributes.push({ name, value: options.common.playerElement.getAttribute(name) })
+ }
+
if (mode === 'webtorrent') await import('./shared/webtorrent/webtorrent-plugin')
if (mode === 'p2p-media-loader') {
const [ p2pMediaLoaderModule ] = await Promise.all([
private static rebuildAndUpdateVideoElement (player: videojs.Player, commonOptions: CommonOptions) {
const newVideoElement = document.createElement('video')
+
+ // Reset class
newVideoElement.className = this.playerElementClassName
+ // Reapply attributes
+ for (const { name, value } of this.playerElementAttributes) {
+ newVideoElement.setAttribute(name, value)
+ }
+
// VideoJS wraps our video element inside a div
let currentParentPlayerElement = commonOptions.playerElement.parentNode
// Fix on IOS, don't ask me why