D.O.A.
Well-known member
I've got a couple extra sites added so far that we wanted, so we should have a thread with various video sites and examples for those who would find the old copy/paste a lot easier. Remember, no spaces in the media name ID when you type it or you get this.
http://video.google.com
example url http://video.google.com/videoplay?docid=1959621678974565543&hl=en&emb=1
match URL
embed html
http://liveleak.com
match URL
Embed
http://trackitdown.net
@ http://xenforo.com/community/threads/a-bit-of-help-bb-media-sites.7021/#post-100113
http://www.dailymotion.com
match
embed
http://www.break.com
[/URL]
sites like break require the whole embed code given from the player rather then just adding the url for the page like liveleak, the have the video ID in the URL.
If anyone has any pointers on the usage of {$id:digits} that would be most helpful too.
So google video must be google_video. I'll start.Please enter an ID using only a-z, A-Z, 0-9, and _ characters.
http://video.google.com
example url http://video.google.com/videoplay?docid=1959621678974565543&hl=en&emb=1
match URL
Code:
http://video.google.com/videoplay?docid={$id}
Code:
<embed id=VideoPlayback src=http://video.google.com/googleplayer.swf?docid={$id}&hl=en&fs=true style=width:640px;height:360px allowFullScreen=true allowScriptAccess=always type=application/x-shockwave-flash></embed>
http://liveleak.com
match URL
Code:
http://www.liveleak.com/view?i={$id}
Code:
<object width="450" height="370">
<param name="movie" value="http://www.liveleak.com/e/{$id}"></param>
<param name="wmode" value="transparent"></param>
<param name="allowscriptaccess" value="always"></param>
<embed src="http://www.liveleak.com/e/{$id}" type="application/x-shockwave-flash" wmode="transparent" allowscriptaccess="always" width="450" height="370"></embed>
</object>
http://trackitdown.net
@ http://xenforo.com/community/threads/a-bit-of-help-bb-media-sites.7021/#post-100113
http://www.dailymotion.com
match
Code:
http://www.dailymotion.com/video/{$id}_
Code:
<object width="480" height="382"><param name="movie" value="http://www.dailymotion.com/swf/video/{$id}?additionalInfos=0"></param>
<param name="allowFullScreen" value="true"></param>
<param name="allowScriptAccess" value="always"></param>
<embed type="application/x-shockwave-flash" src="http://www.dailymotion.com/swf/video/{$id}?additionalInfos=0" width="480" height="382" allowfullscreen="true" allowscriptaccess="always"></embed>
</object>
http://www.break.com
Code:
[URL]http://embed.break.com/{$id}
Code:
<object width="464" height="376" id="1946677" type="application/x-shockwave-flash" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" alt="">
<param name="movie" value="http://embed.break.com/{$id}=="></param>
<param name="allowScriptAccess" value="always"></param>
<embed src="http://embed.break.com/{$id}==" type="application/x-shockwave-flash" allowScriptAccess=always width="464" height="376"></embed>
</object>
sites like break require the whole embed code given from the player rather then just adding the url for the page like liveleak, the have the video ID in the URL.
If anyone has any pointers on the usage of {$id:digits} that would be most helpful too.