Skip to content

Commit 2885987

Browse files
committedNov 11, 2024
fix(youtube-player): startSeconds not applied when using placeholder
Fixes that the `startSeconds` input wasn't doing anything if there's a placeholder. This used to work, but seems to have broken during the transition to using the placeholder. Fixes #29874. (cherry picked from commit 23ecba2)
1 parent b7f509c commit 2885987

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed
 

‎src/dev-app/youtube-player/youtube-player-demo.html

+2
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,11 @@ <h2>Basic Example</h2>
1313
<div class="demo-video-selection">
1414
<mat-checkbox [(ngModel)]="disableCookies">Disable cookies</mat-checkbox>
1515
<mat-checkbox [(ngModel)]="disablePlaceholder">Disable placeholder</mat-checkbox>
16+
<mat-checkbox [(ngModel)]="startAt30s">Start at 30s</mat-checkbox>
1617
</div>
1718
<youtube-player [videoId]="selectedVideoId"
1819
[playerVars]="playerVars"
20+
[startSeconds]="startAt30s ? 30 : 0"
1921
[width]="videoWidth"
2022
[height]="videoHeight"
2123
[disableCookies]="disableCookies"

‎src/dev-app/youtube-player/youtube-player-demo.ts

+1
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ export class YouTubePlayerDemo implements AfterViewInit, OnDestroy {
9494
videoHeight: number | undefined;
9595
disableCookies = false;
9696
disablePlaceholder = false;
97+
startAt30s = false;
9798
placeholderQuality: PlaceholderImageQuality;
9899

99100
constructor() {

‎src/youtube-player/youtube-player.ts

+6
Original file line numberDiff line numberDiff line change
@@ -597,6 +597,12 @@ export class YouTubePlayer implements AfterViewInit, OnChanges, OnDestroy {
597597
const state = player.getPlayerState();
598598
if (state === PlayerState.UNSTARTED || state === PlayerState.CUED || state == null) {
599599
this._cuePlayer();
600+
} else if (playVideo && this.startSeconds && this.startSeconds > 0) {
601+
// We have to use `seekTo` when `startSeconds` are specified to simulate it playing from
602+
// a specific time. The "proper" way to do it would be to either go through `cueVideoById`
603+
// or `playerVars.start`, but at the time of writing both end up resetting the video
604+
// to the state as if the user hasn't interacted with it.
605+
player.seekTo(this.startSeconds, true);
600606
}
601607

602608
this._changeDetectorRef.markForCheck();

0 commit comments

Comments
 (0)
Please sign in to comment.