Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I am using @angular/youtube-player to render a video in angular app. I need to play it on autoplay. on reading the docs, I got the configuration to set it to autoplay. but still somehow its not running..

here is the stackblitz link

pls help me to set the parameters

question from:https://stackoverflow.com/questions/65844352/implement-playervars-parameters-in-angular-app-using-angular-youtube-player

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
604 views
Welcome To Ask or Share your Answers For Others

1 Answer

this must be changed

[playerVars]="{'autplay': 1}"

to this

[playerVars]="{'autoplay': 1}"

in order to work as expected


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...