![]() |
|
|||||||
| phpBB3 Manuals and Guides You will find out how to admin a forum, change forum style and many other guides. Other online helps: http://www.phpbb.com/support/documentation/3.0/, http://www.phpbb.com/support/tutorials/3.0/, http://www.phpbb.com/kb/3.0/. |
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
How to embed youtube or others if you have the code
If you have the code of a flash to embed like youtube, you can use BBCode [flash] to embed it.
You have a code look like this from youtube or somewhere: Code:
<object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/QMBdkBGePzQ&hl=en"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/QMBdkBGePzQ&hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object> height: the height of the flash value/src: Web address to the flash Rewrite it into [flash] as this thread advised. That means your [flash] will like this: Code:
[flash=425,355]http://www.youtube.com/v/QMBdkBGePzQ&hl=en[/flash] Please feel free to post here if you have any questions, we and other members will reply to you as soon as we can. Thank you. |
|
|||
|
BBCode [youtube], it's better
You can add your BBCode [youtube], it's better than the solution above. The above only suitable for another network. Refer to Knowledge Base - Adding Custom BBCodes in phpBB3, see 'YouTube BBCode' section.
|
|
|||
|
Help with Embedding Videos
I tried everything possible. Does not work. The whole reason for the forum host was for embedding a few videos I needed.
Here is the video info YouTube - GhostWarrior Verdant Blitz <object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/OedcvZs71n4&hl=en_US&fs=1&"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/OedcvZs71n4&hl=en_US&fs=1&" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object> [flash=425,355]http://www.youtube.com/v/QMBdkBGePzQ&hl=en[/flash] [flash=425,344]http://www.youtube.com/watch?v=OedcvZs71n4[/flash] gives me a white box. so does using 355 [youtube]http://www.youtube.com/watch?v=OedcvZs71n4[/youtube] does nothing same with [flash=]http://www.youtube.com/watch?v=OedcvZs71n4[/flash] same with [flash=]<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/OedcvZs71n4&hl=en_US&fs=1&"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/OedcvZs71n4&hl=en_US&fs=1&" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object>[/flash] I was in a bad auto accident & my site was not logged into for over 30 days. I am trying to reset set it up but alot of my old features seem gone. How can I get videos back up please? Many thanks in advance site located http://friendsofghostwarrior.freeforums.org/index.php specific issue located Halls of Knowledge • View topic - GhostWarrior Verdant Blitz Last edited by GhostWarrior : 12-21-2009 at 07:04 AM. |
|
||||
|
You have to create the "youtube" BBcode first. Go to AdminCP > Posting > add a new BBcode.
BBcode usage: Code:
[youtube]{URL}[/youtube]
Code:
<object type="application/x-shockwave-flash" data="{URL}" width="425" height="350">
<param name="movie" value="{URL}" />
<param name="wmode" value="transparent" />
</object>
__________________
The FreeForum.ca Team. Free Forum http://www.freeforum.ca Free PhpNuke Hosting http://www.greatnuke.com, http://www.freephpnuke.org |
|
|||
|
Quote:
Code:
[youtube]http://{SIMPLETEXT1}.youtube.com/watch?v={SIMPLETEXT2}[/youtube]
Code:
<object width="425" height="350"><param name="movie" value="<A href="http://{SIMPLETEXT1}.youtube.com/v/{SIMPLETEXT2}"></param><param">http://{SIMPLETEXT1}.youtube.com/v/{SIMPLETEXT2}"></param><param name="wmode" value="transparent"></param><embed src="http://{SIMPLETEXT1}.youtube.com/v/{SIMPLETEXT2}" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object>
Code:
[youtube]http://www.youtube.com/watch?v=LHCHo882kk2w[/youtube] ![]() I hope this works. |
|
||||
|
Quote:
Thanks.
__________________
The FreeForum.ca Team. Free Forum http://www.freeforum.ca Free PhpNuke Hosting http://www.greatnuke.com, http://www.freephpnuke.org |
|
|||
|
Quote:
BBcode usage: Code:
[youtube]http://www.youtube.com/watch?v={IDENTIFIER}[/youtube]
Code:
<object width="480" height="385">
<param name="movie" value="http://www.youtube.com/v/{IDENTIFIER}&hl=en_US&fs=1&"></param>
<param name="allowFullScreen" value="true"></param>
<param name="allowscriptaccess" value="always"></param>
<embed src="http://www.youtube.com/v/{IDENTIFIER}&hl=en_US&fs=1&" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed>
</object>
|