When I was building this blog I came across an interesting problem. I wanted to include some of my video projects as Youtube clips but noticed that the default embed code that Youtube offers isn't valid xhtml.

Youtube offers something like this:

<object width="425" height="350">
    <param name="movie" value="http://www.youtube.com/v/iJ6JjzfZ2PM"></param>
    <param name="wmode" value="transparent"></param>
    <embed src="http://www.youtube.com/v/iJ6JjzfZ2PM" 
        type="application/x-shockwave-flash" 
        wmode="transparent" width="425" height="350"></embed>
</object>



After a bit of playing around, I found that what I really needed was something more like this:

<object data="http://www.youtube.com/v/iJ6JjzfZ2PM" 
    type="application/x-shockwave-flash" 
    width="425" height="350">
    <param name="movie" value="http://www.youtube.com/v/iJ6JjzfZ2PM"/>
</object>



The next hurdle was RSS; Valid RSS doesn't allow <embed> tags at all. I removed them from the output of my RSS generator but I still wanted to show some sort of preview of the missing Youtube embed. Thankfully, Youtube offers a default preview image for all uploaded videos and so given iJ6JjzfZ2PM as an example video id, the image would be:

http://img.youtube.com/vi/iJ6JjzfZ2PM/default.jpg

That image comes out something like this:


The preview image for a Youtube clip.

So with all that sorted, now I can have my Youtube and my validation ;-)

7 Comments

Dan
4:43pm, 10 September 2007

Hey Nathan, looks good - I've created a PHP class that helps with creating the valid code. It can either parse the embed code supplied by YouTube or use the video id directly.

<?php

    /* Youtube class for generating valid xhtml from original youtube embed code or video id */
    class Youtube {

        /* Process the original youtube embed html if provided or youtube video id and generate valid xhtml */
        private function process($html, $id = '') {
            if (!$id) {
                ereg('v/(.*)"></param><p', $html, $reg);
                $id = $reg[1];
            }
            return '<object type="application/x-shockwave-flash" width="425" height="350" data="http://www.youtube.com/v/'.$id.'"><param name="movie" value="http://www.youtube.com/v/'.$id.'" /></object>';
        }

        /* Generate valid xhtml from original youtube embed html */
        function from_html($html) {
            return $this->process($html);
        }

        /* Generate valid xhtml from youtube video id */
        function from_id($id) {
            return $this->process('', $id);
        }

    }

?>



<?php
    include 'youtube.php';
    /* Create a new instance of our class */
    $movie = new Youtube();

    /* The default embed code supplied by YouTube */
    $inputhtml = '<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/iJ6JjzfZ2PM"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/iJ6JjzfZ2PM" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object>';

    /* Generate valid xhtml from default code */
    echo $movie->from_html($inputhtml);

    /* Generate valid xhtml from supplied id */
    echo $movie->from_id('iJ6JjzfZ2PM');

?>


公司注册
11:41pm, 14 December 2008

提供登记<a href=http://www.jrzhuce.com>公司注册</a>程序、公司注册流程、上海注册公司流程跟踪, 代理<a href=http://www.jrzhuce.com>上海注册公司</a>服务,<a href=http://www.jrzhuce.com>注册公司</a>是一家专业从事上海注册公司、提供如何注册公司。

空压机
1:15am, 16 December 2008

螺杆<a href=http://www.szhuixin.com>空压机</a>,活塞空压机,滑片空压机。专用<a href=http://www.kdlxj.com>离心机</a>起源于最初的离心机主要形成了三足离心机等品种。感器专用<a href=http://www.aonen.com>烘箱</a>,变压器专用烘箱等。生产的<a href=http://www.scpv.net>水泵</a>包括清水泵等。

如何炒黄金
2:39am, 16 December 2008

黄金交易就是黄金买卖产品<a href=http://www.ea999.com>如何炒黄金</a>,<a href=http://www.ea999.com>黄金投资</a>有限公司教你黄金投资就是<a href=http://www.ea999.com>黄金买卖</a>投资。分析<a href=http://www.ea999.com>黄金现货</a>。制造<a href=http://www.baic.com.cn>恒温恒湿试验箱</a>。

如何炒黄金
2:44am, 16 December 2008

黄金交易就是黄金买卖产品<a href=http://www.ea999.com>如何炒黄金</a>,<a href=http://www.ea999.com>黄金投资</a>有限公司教你黄金投资就是<a href=http://www.ea999.com>黄金买卖</a>投资。分析<a href=http://www.ea999.com>黄金现货</a>。制造<a href=http://www.baic.com.cn>恒温恒湿试验箱</a>。

气动调节阀
12:07am, 18 December 2008

提供<a href=http://www.hzhuaxia.com/qdtjf.htm>气动调节阀</a>,气动调节阀产生,<a href=http://www.hzhuaxia.com/qdtjf.htm>电动调节阀</a>,电动调节阀设备、<a href=http://www.hzhuaxia.com/qdtjf.htm>自力式调节阀</a>。感器专用<a href=http://www.grand-yield.com>电炉</a>等。商标代理权以及<a href=http://www.shunlitm.com>商标代理</a>。提供<a href=http://www.zjktwx.cn>杭州空调维修</a>服务。

除湿机
1:37am, 25 December 2008

提供工业<a href=http://www.zjhzct.com>除湿机</a>用,工业除湿机,家用除湿机,工业除湿机, <a href=http://www.zjhzct.com/csb1.htm>加湿器</a>,加湿器流水线,加湿器生产线;川泰<a href=http://www.zjhzct.com>工业除湿机</a>,<a href=http://www.zjhzct.com>加湿机</a>流水线,提供<a href=http://www.chushiji2008.com>除湿机</a>。

Post a comment

Name
Link
Email (not shown, used for avatar)
Type this into the box: