Hi,
I've got a problem similar to this one :
http://forums.adobe.com/thread/951962
I'am playing a video file (mp4) on an animation made with edge.
The video start at a trigger position.
It work fine on my browser on my computer.
but the video doesnt start on iPad.
I work with DPS.
The animation is included like an HTML page.
It work exept the video.
my video is embed this way :
var vid = $("<video width='518' height='357' id='videoID'>" +
"<source src='video/myVideo.mp4' type='video/mp4' />" +
"<source src='video/myVideo.webm' type='video/webm' />" +
"<source src='video/myVideo.ogv' type='video/ogg' />" +
"This browser is not compatible with HTML 5" +
"</video>");
sym.$("videoContainer").append(vid);
Is there an other way to embed the video for iPad ?
Thanks