Forum Discussion
RACHELSCHMITT
Community Member
Thanks Alyssa!
Next question is, is it possible to time stamp videos that are embedded? As in, just have the video play for a segment rather than the full video? For example, I only want to play from 1:15min - 1:45min of a 2 min video.
JoseTansengco
6 months agoStaff
Hi Rachel,
You can start an embedded video at a specific time by adding “?start=” to a video’s embed code, followed by the time in seconds at which you’d like the video to begin playing.
Example:
<iframe allowfullscreen="" frameborder="0" height="315" src="http://www.youtube.com/embed/UkWd0azv3fQ?start=90" width="420"></iframe>
To specify the end time, you'll need to modify the URL a little bit more to include the end parameter like this:
"http://www.youtube.com/embed/UkWd0azv3fQ?start=26&end=30"
Hope this helps!
- RACHELSCHMITT6 months agoCommunity Member
Thank you Jose! That is very helpful 😊