Video starting at current time

Hello, I searched the forum but didn’t find anything…
Is it possible to start a video at a precise time code like t=88 (when you copy a video link you have the option to do so…)

Thanks!

I don’t think there is an option for Start Time inside the builder. But you can use the below code to achieve this.

<script>
  
document.addEventListener("DOMContentLoaded", function() {
    const video = document.querySelector("#myvideo video"); // Replace "myVideo" with the ID of video.
    const startTime = 15; // Time in seconds to start the video

    video.addEventListener("loadedmetadata", function() {
        video.currentTime = startTime;
        video.play();
    }, false);
});
 
</script>

Thank you! I’ll try that tomorrow and let you know.