Forum Discussion
Can we embed videos in Rise 360?
Hi there, Rachel!
It sounds like you're using the Multimedia Embed block, is that right? If so, try embedding your video using an iFrame code in that block.
Copy the iFrame code below, and replace the bolded text with the video URL. Let me know if you'd like some help with that!
<iframe src="Insert URL Here"></iframe>
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.
- JoseTansengco7 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!
- RACHELSCHMITT7 months agoCommunity Member
Thank you Jose! That is very helpful 😊