I'm doing this to enable Airplay on HTML5 video for my iPad 1st generation with iOS 4.3.1.

// Prototype JS framework
$('videoContainer').appendChild(
    new Element(
        'video', {
            id: 'video0',
            src: 'http://shapeshed.com/examples/HTML5-video-element/video/320x240.m4v',  
            controls: 'true',
            width: '200',
            height: '200',
        }
    )
);

$('video0').writeAttribute('x-webkit-airplay', 'allow');

When I turn on airplay, all I hear is audio on the TV. How do I enable video too?

Edit:

According to Ben Dodson, you have to re-embed the video. I did this:

$('videoContainer').update($('videoContainer').innerHTML);

Is there any way around this? Seems so hacky and it's wasted processing.

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Try reformatting it as a .mp4 movie, and make sure that it is H.264 video with AAC audio. It has to be H.264, or the iPad can't steam it. (Got this from http://macosrumors.com/2011/01/12/first-look-mobile-safari-airplay/)

link|improve this answer
It was not an encoding issue. I got it to work with the same video. See my edit above. – JoJo Mar 30 '11 at 0:27
Okay. Just wondering, do you have to embed it with Prototype? Or can you just flat out embed it with <video>, and skip the JS in the process. If you can, do something like this: <video src="http://shapeshed.com/examples/HTML5-video-element/video/320x240.m4v" id="video0" width="200" height="200" x-webkit-airplay="allow"></video> – Remixz Mar 30 '11 at 0:31
Straight out writing to innerHTML also works, but it looks so ugly. – JoJo Mar 30 '11 at 0:38
Ahh, okay. Then I'm sunk, haha. Sorry! – Remixz Mar 30 '11 at 0:40
Whatever. This restriction is as stupid as iOS4 disabling autoplay. I'll just deal with crappy code. – JoJo Mar 30 '11 at 0:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.