I'm working with the Youtube Javascript API (iframe version) and I'm using start
and end
parameters in order to play a portion only of a video. While everything works fine, once the end
is reach, the player stop (normal behavior). However, when clicking again on play, the player does not seems to considering the start
option. It always restart playing from the beginning of the video. It ends however at the defined end
value, always.
<iframe frameborder="0" src="https://www.youtube.com/embed/5lGoQhFb4NM?autoplay=1&autohide=1&modestbranding=1&showinfo=0&controls=0&vq=hd720&rel=0&start=60&end=100" style="width: 100%; height: 400px;"></iframe>
Do you guys have any idea on why it is happening?