- 论坛徽章:
- 0
|
本帖最后由 黑色阳光_cu 于 2010-08-05 17:20 编辑
- #!/bin/env perl
- use strict;
- use warnings;
- my @order = qw(id name src quality width height align allowScriptAccess type);
- local $/ = "\n\n";
- while (my $html = <DATA>)
- {
- my %nodes =
- (
- id => "movie_player",
- name => "movie_player",
- src => undef,,
- quality => "high",
- width => undef,
- height => undef,
- align => "middle",
- allowScriptAccess => "sameDomain",
- type => undef
- );
- while ($html =~ /(\w+)\s*=\s*(['"])?\s*((?(2)(?:(?!\2).)*|\S*))\s*(?(2)\2)/g)
- {
- # print "$1 => $3\n";
- $nodes{$1} = $3;
- }
- if ($nodes{src} =~ /VideoIDS=(\w+)/i)
- {
- $nodes{src} = "http://player.youku.com/player.php/sid/$1/v.swf";
- }
- $html = "<embed ";
- foreach my $key (@order)
- {
- $html .= qq($key="$nodes{$key}" );
- }
- local $/ = " ";
- chomp $html;
- $html .= "></embed>";
- print $html;
- print "\n\n";
- }
- __DATA__
- <embed type="application/x-shockwave-flash" height="400" width="500"
- src=" http://static.youku.com/v1.0.0115/v/swf/qplayer.swf?VideoIDS=XMTY3MzIwMTY=&isAutoPlay=true&embedid=-&showAd=0"
- pluginspage=" http://www.macromedia.com/go/getflashplayer" wmode="transparent"
- document.document.form1.="hight"></embed>
- <embed menu="true" type="application/x-shockwave-flash"
- src="http://static.youku.com/v1.0.0025/v/swf/qplayer.swf?VideoIDS=XMTgyODM2MzI4&winType=interior&isShowRelatedVideo=false&showAd=0"
- width="470" height="350" play="true" loop="True"></embed>
- <embed pluginspage="http://www.macromedia.com/go/getflashplayer"
- src="http://static.youku.com/v1.0.0115/v/swf/qplayer.swf?VideoIDS=XMTQ4OTU4NDg=&isAutoPlay=true&embedid=-&showAd=0"" width="500" height="400"
- type="application/x-shockwave-flash" wmode="transparent" document.document.form1.="hight"></embed>
- <embed allowfullscreen="true" bgcolor="#000000" type="application/x-shockwave-flash" height="480" width="600"
- src="http://static.youku.com/v1.0.0025/v/swf/qplayer.swf?VideoIDS=XMTkwNjQxNTM2&winType=interior&isShowRelatedVideo=false&showAd=0"></embed>
- <embed document.document.form1.="hight" wmode="transparent" type="application/x-shockwave-flash" height="400" width="500"
- src="http://player.youku.com/player.php/Type/Folder/Fid/1263594/Ob/1/Pt/289/sid/XMTg4NzM4MjQ=/v.swf"
- pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>
- <embed type="application/x-shockwave-flash" height="500" width="600" src="http://player.youku.com/player.php/sid/XNjkxOTcyNjg=/v.swf"></embed>
- <embed menu="true" type="application/x-shockwave-flash"
- src="http://static.youku.com/v1.0.0025/v/swf/qplayer.swf?VideoIDS=XMTgyODM2MzI4&winType=interior&isShowRelatedVideo=false&showAd=0"
- width="470" height="350" play="true" loop="True"></embed>
复制代码 |
|