To set a video element to a certain time, you would need to give it an Element ID, and then target it:
var mediaElement = document.getElementById("myVideo");
Next, you would need to use this function to jump to a specific time:
mediaElement.currentTime = 20;
If you also wanted to play that video at the 20 second mark, you would need:
mediaElement.play();
The video can be either a regular element or in a symbol (and controlled via custom behavior (JavaScript function) or regular JavaScript function as long as the video is on that scene.
But if you play a 20 second video starting from 20 seconds, it won’t really do anything since that’s the end of the video (so maybe I’m not understanding your question?).