Hi dear,
Until the latest update I used to work with multiple video files (.mp4) succesfully by using an editted template file.
The simple code I used was:
$videoID = htmlspecialchars($_GET[‘v’]);
$result = mysql_query(“SELECT * FROM wp_videos WHERE video_id = ‘$videoID'”) or die(mysql_error());
while($row = mysql_fetch_array($result)){
$videotitle = $row[‘video_filename’];
$code = ‘[s3bubbleRtmpVideoDefault bucket=”mybucketname” track=”‘.$videotitle.’.mp4″ aspect=”16:9″ autoplay=”true” download=”false” cloudfront=”mycloudfrountid”/]’;
echo do_shortcode(“$code”);
}
?>
But now, with the latest update this code stopped working. And I urgently need to get my site up and running again.
Any suggestions or solutions for this problem?
Thanks