Html5 does not support youtube url. If you need video src for your site, you can do:
Step 1: Add &html5=True
to your favorite YouTube URL.
Step 2: find the <video/>
in the source
Step 3: add controls="controls"
in the video tag: <video controls="controls"..../>
Example:
<video controls="controls" class="video-stream" x-webkit-airplay="allow" data-youtube-id="N9oxmRT2YWw" src="http://v20.lscache8.c.youtube.com/videoplayback?sparams=id%2Cexpire%2Cip%2Cipbits%2Citag%2Cratebypass%2Coc%3AU0hPRVRMVV9FSkNOOV9MRllD&itag=43&ipbits=0&signature=D2BCBE2F115E68C5FF97673F1D797F3C3E3BFB99.59252109C7D2B995A8D51A461FF9A6264879948E&sver=3&ratebypass=yes&expire=1300417200&key=yt1&ip=0.0.0.0&id=37da319914f6616c"></video>
Notice that there are some things expire
. I don't know how long the src
string will work.
Testing yourself.
Please note that this src video is specific to the browser that you use to fetch the page source. I think Youtube generates this HTML dynamically (at least for the time being), so when testing, if I copy to Firefox, this works in Firefox, but not in Chrome.
source share