hi ethic,
try the below code for that, it will help to run the video in between spacific time period, and you can put any message in between the time
Code:
<?php
$start_time = 5;
$end_time= 7;
if ((time() > $start_time) && (time() < $endtime)){
?>
Start your video here
<?php }else if (time() < $start_time){ ?>
Add some comming soon message here.
<?php }else{ ?>
Add sorry message like 'you missed it here'.
<?php } ?>
Regards
Jitedner