Add poster for video watch

pull/177/head
Chocobozzz 2017-12-20 09:57:00 +01:00
parent 86f278cb4c
commit 0826c92d6f
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 7 additions and 1 deletions

View File

@ -33,7 +33,7 @@ export class VideoWatchComponent implements OnInit, OnDestroy {
error = false
loading = false
player: videojs.Player
playerElement: HTMLMediaElement
playerElement: HTMLVideoElement
userRating: UserVideoRateType = null
video: VideoDetails = null
videoPlayerLoaded = false
@ -288,6 +288,12 @@ export class VideoWatchComponent implements OnInit, OnDestroy {
if (this.videoPlayerLoaded !== true) {
this.playerElement = this.elementRef.nativeElement.querySelector('#video-element')
// If autoplay is true, we don't really need a poster
if (this.isAutoplay() === false) {
console.log('coucou')
this.playerElement.poster = this.video.previewUrl
}
const videojsOptions = {
controls: true,
autoplay: this.isAutoplay(),