jaycraft21
New Member
- Posts
- 689
I'm not sure if this has been covered before so tell me to STFU if it has but how about allowing youtube and google videos to be embedded into the forum instead of having to post links and follow them this would allow us to stay on Landyzone watch posted vids and reply to them all at the same time.
simple code which enables vids to be embedded is
Youtube
Tag
Code
Google videos
Tags
Code
These are really simple to add to the bbcode, and work fine as long as .SWF or shockwave is enabled which can also allow other bbcodes to be added such as allowing games to be added to the forum. And as far as I know doesn't use the sites bandwidth.
not sure if this would be possible and was just a suggestion.
simple code which enables vids to be embedded is
Youtube
Tag
Code:
[youtube]{IDENTIFIER}[/youtube]
Code:
<object type="application/x-shockwave-flash" data="http://www.youtube.com/v/{IDENTIFIER}" width="425" height="350">
<param name="movie" value="http://www.youtube.com/v/{IDENTIFIER}" />
<param name="wmode" value="transparent" />
</object>
Google videos
Tags
Code:
[googlevideo]{NUMBER}[/googlevideo]
Code:
<object type="application/x-shockwave-flash" data="http://video.google.com/googleplayer.swf?docId=-{NUMBER}" width="400" height="326">
<param name="movie" value="http://video.google.com/googleplayer.swf?docId=-{NUMBER}" />
<param name="allowScriptAcess" value="sameDomain" />
<param name="quality" value="best" />
<param name="bgcolor" value="#FFFFFF" />
<param name="scale" value="noScale" />
<param name="salign" value="TL" />
<param name="FlashVars" value="playerMode=embedded" />
</object>
not sure if this would be possible and was just a suggestion.