citcit / autoembed

Automatically exported from code.google.com/p/autoembed
GNU Lesser General Public License v3.0
0 stars 0 forks source link

Object data attribute #26

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
kewego's embed content is a little different...

requires a data param in the object tag and can _not_ have the classid
param as well as flash vars passed in as a object param (rather than an
embed param)

<object data="http://www.kewego.com/swf/p3/epix.swf" 

codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#ve
rsion=9,0,115,0"

        type="application/x-shockwave-flash"         
        width="400"        
        height="300">

  <param name="flashVars"
value="language_code=en&playerKey=902e0deec887&skinKey=71703ed5cea1&sig=iLyROoaf
tv7I&autostart=false"
/>  
  <param name="movie" value="http://www.kewego.com/swf/p3/epix.swf" />
  <param name="wmode" value="transparent" />
  <param name="quality" value="high" />
  <param name="allowFullScreen" value="true" />
  <param name="allowScriptAccess" value="always" />
  <param name="pluginspage"
value="http://www.macromedia.com/go/getflashplayer" />
  <param name="autoplay" value="false" />
  <param name="autostart" value="false" />

  <embed   type="application/x-shockwave-flash"  
           src="http://www.kewego.com/swf/p3/epix.swf"  
           width="400"  
           height="300"  
           wmode="transparent"  
           quality="high"  
           allowFullScreen="true"  
           allowScriptAccess="always"
           pluginspage="http://www.macromedia.com/go/getflashplayer"
           autoplay="false"  
           autostart="false"  

flashvars="language_code=en&playerKey=iLyROoaftv7I&skinKey=71703ed5cea1&sig=iLyR
Ooaftv7I&autostart=false"
/>
</object>

Original issue reported on code.google.com by phpu...@gmail.com on 14 Jan 2009 at 6:45

GoogleCodeExporter commented 8 years ago
TMZ is the same way
Example URL:
http://www.tmz.com/videos?autoplay=true&mediaKey=681f6949-0864-40f8-8984-90e3970
a3c09

Example Embed:
<object width="480" 
        height="316" 
        type="application/x-shockwave-flash" 
        name="inline" 
        data="http://tmz.vo.llnwd.net/o28/player/inline.swf" 
        id="inline" 
        style="visibility: visible;">
  <param name="allowScriptAccess" value="always"/>
  <param name="allowFullScreen" value="true"/>
  <param name="quality" value="high"/>
  <param name="bgcolor" value="#ffffff"/>
  <param name="flashvars"
value="videoPage=true&role=library&lcLevel=tmz:tmz1&lcIncludeContent=true&always
Autoplay=true&mediaKey=681f6949-0864-40f8-8984-90e3970a3c09&autoplay=true"/>
</object>

Original comment by phpu...@gmail.com on 14 Jan 2009 at 8:09

GoogleCodeExporter commented 8 years ago
Add AdultSwim to the list

URI:
http://www.adultswim.com/video/?episodeID=8a2505951ea6dcca011ead2664e1004b

Embed:
<object width="425" 
        height="350" 
        type="application/x-shockwave-flash" 
        data="http://www.adultswim.com/video/vplayer/index.html">

  <param name="allowFullScreen" value="true" />
  <param name="movie" value="http://www.adultswim.com/video/vplayer/index.html"/>
  <param name="FlashVars" value="id=8a2505951ecafa5d011ed0bb420b00e1" />

  <embed src="http://www.adultswim.com/video/vplayer/index.html" 
         type="application/x-shockwave-flash" 
         FlashVars="id=8a2505951ecafa5d011ed0bb420b00e1" 
         allowFullScreen="true" 
         width="425" 
         height="350" />
</object>

Original comment by phpu...@gmail.com on 15 Jan 2009 at 3:29