TO hit the wrong forum.
Hallo Fernandofas,
try this Javascript:
Code:
$(document).ready(function () {
querystring = window.location.href.match(/.*(\?.*)/);
if (querystring) var theVid = 'http://techslides.com/demos/sample-videos/small.mp4' + querystring[1];
else var theVid = 'http://techslides.com/demos/sample-videos/small.mp4?id=10506';
var player = document.getElementById('videoPlayer');
//var mp4Vid = document.getElementById('mp4Source');
player.pause();
// Now simply set the 'src' attribute of the mp4Vid variable!!!!
//$("#mp4Source").attr('src', theVid);
player.src = theVid;
player.load();
//player.show();
player.play();
});