Adding Airplay Support to Your Web Video
From Apple Dev Documentation:
For web-based content, you can enable AirPlay Video in the QuickTime Plug-in or HTML5 video element as follows:
- QTPlug-in:
airplay="allow"airplay="deny"(Default)
For example:
<embed src="movie.mov" width="320" height="240" airplay="allow"> - HTML5 video element:
x-webkit-airplay="allow"x-webkit-airplay="deny"(Default)
For example:
<video controls width="640" height="368" x-webkit-airplay="allow" src="content/side_with_the_seeds.mov"> </video>


