|
Page 1 of 2
|
JHOSMAN
Joined: March 2007
Posts: 205
Location: Bogot
|
YouTube BBCode
Go to ACP->Post->BBcode
IN BBcode:
- [youtube]{TEXT}[/youtube]
In HTML:
- <object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/{TEXT}"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/{TEXT}" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object>
In the Line of BBcode this:
- Example of use: [youtube]wassffsf[/youtube]
____________ ? JHOSMAN - Webmaster
|
#1 Mon 07 Apr, 2008 23:52 |
|
Sponsors
|
Icy Phoenix is an open source project, you can show your appreciation and support future development by donating to the project.
|
|
Limun
Joined: January 2008
Posts: 1334
Location: [Censor]
|
Re: YouTube BBCode
Go to ACP->Post->BBcode
IN BBcode:
- [youtube]{TEXT}[/youtube]
In HTML:
- <object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/{TEXT}"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/{TEXT}" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object>
In the Line of BBcode this:
- Example of use: [youtube]wassffsf[/youtube]
i made what u say...all in ACP
i see button , but i got a blank page
do you know why ?
thanks JHOSMAN
____________ We are the phpBBorg. Lower your Crackers. Your phpological and forumological distinctivness will be added to our own. Resistance if futile!
|
#3 Sun 13 Apr, 2008 18:06 |
|
JHOSMAN
Joined: March 2007
Posts: 205
Location: Bogot
|
Re: YouTube BBCode
Please insert the ID is the apple of the video here are an example of how to find the ID of the videos ...
http://youtube.kokforos.com
Check what is there in BLUE
____________ ? JHOSMAN - Webmaster
|
#4 Sun 13 Apr, 2008 18:12 |
|
Limun
Joined: January 2008
Posts: 1334
Location: [Censor]
|
Re: YouTube BBCode
____________ We are the phpBBorg. Lower your Crackers. Your phpological and forumological distinctivness will be added to our own. Resistance if futile!
|
#5 Sun 13 Apr, 2008 19:50 |
|
ihitf13anddied
Joined: September 2008
Posts: 1
|
Re: YouTube BBCode
YouTube BBCode Best Method!
Hello!
This bbcode snippet here will allow your users to paste the WHOLE YOUTUBE LINK. I use this on my phpbb3 forums over at ***.aintnobullshit.com and it works great!
BBcode usage:
- [youtube]h**p://***.youtube.com/watch?v={TEXT}[/youtube]
HTML Replacement:
- <object width="425" height="350"><param name="movie" value="h**p://***.youtube.com/v/{TEXT}"></param><param name="wmode" value="transparent"></param><embed src="h**p://***.youtube.com/v/{TEXT}" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object>
This is a much easier method than having the users copy and paste a small ID #.......and this method even works if you add the "&feature=related" thing on the end, too.
Happy phpbbing!
~f13
|
#6 Fri 12 Sep, 2008 08:52 |
|
zaneeta
Joined: October 2009
Posts: 1
|
Re: YouTube BBCode
How do youtube videos get removed and have sound taken off? I just want to know HOW and WHY youtube videos get removed. Like they'll say either: this video has been removed due to terms of violation, or youtube will delete the sound of the video. How does this happen??? I don't get what they mean when they say that you have property not recognized by wmg, or something like that, or why they remove your video due to terms of violation. Does it get removed right away or at any random time?
Last edited by zaneeta on Thu 29 Oct, 2009 08:58; edited 1 time in total |
#8 Fri 23 Oct, 2009 11:08 |
|
Joshua203
Joshua 203
Dutch A Go Go
Joined: August 2008
Posts: 1754
Location: Earth, Europe, the Netherlands, Rotterdam
|
Re: YouTube BBCode
i guess this happens when/if someone files a complaint/removal notice because it is copyright protected material?
____________ www.DutchaGoGo.com (development/under construction ...Forever?¿?)
|
#9 Fri 23 Oct, 2009 18:52 |
|
channelasian
Joined: July 2009
Posts: 3
|
Re: YouTube BBCode
ihitf13anddied wrote: [View Post] YouTube BBCode Best Method!
Hello!
This bbcode snippet here will allow your users to paste the WHOLE YOUTUBE LINK. I use this on my phpbb3 forums over at ***.aintnobullshit.com and it works great!
BBcode usage:
- [youtube]h**p://***.youtube.com/watch?v={TEXT}[/youtube]
HTML Replacement:
- <object width="425" height="350"><param name="movie" value="h**p://***.youtube.com/v/{TEXT}"></param><param name="wmode" value="transparent"></param><embed src="h**p://***.youtube.com/v/{TEXT}" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object>
This is a much easier method than having the users copy and paste a small ID #.......and this method even works if you add the "&feature=related" thing on the end, too.
Happy phpbbing!
~f13
Thanks alot man.!! It works great with me.
|
#10 Fri 29 Jan, 2010 13:53 |
|
Joshua203
Joshua 203
Dutch A Go Go
Joined: August 2008
Posts: 1754
Location: Earth, Europe, the Netherlands, Rotterdam
|
Re: YouTube BBCode
looking at this youtube code closely (maybe too close?? ) i noticed this throws w3c errors on the pages it is used (6 i think)
so i started messing with this, so far i have this:
<div id="utube{SIMPLETEXT}"></div>
<script type="text/javascript" src="{T_TEMPLATE_PATH}/flashfix.js"></script>
<script type="text/javascript">
var fo = new FlashObject("http://www.youtube.com/v/{SIMPLETEXT}", "mymovie", "425", "350","7");
fo.addParam("wmode", "transparent");
fo.addVariable("tab", getQueryParamValue("tab"));
fo.write("utube{SIMPLETEXT}");
</script>
wich throws me no error UNLESS someone would post the same video on the same page (because the video's simpletext gives the div id its name) so i actually need another or a better variable to give the div a unique id, it would be great if the user would not have to type anything extra to get it (just like it does now)
any ideas anyone?
____________ www.DutchaGoGo.com (development/under construction ...Forever?¿?)
|
#11 Tue 02 Feb, 2010 00:30 |
|
antoraa
Joined: February 2010
Posts: 1
|
Re: YouTube BBCode
How to access Youtube and other video streaming sites? The college blocked access to various sites on it's network but I've seen a few people able to stream from sites like Youtube. Accessing Youtube is not possible much less begin streaming. Is there a way to go around this?
Edited by TheSteffen, Wed 10 Feb, 2010 00:34: Links remove because of SPAM + User banned |
#12 Tue 02 Feb, 2010 10:38 |
|
Joshua203
Joshua 203
Dutch A Go Go
Joined: August 2008
Posts: 1754
Location: Earth, Europe, the Netherlands, Rotterdam
|
Re: YouTube BBCode
____________ www.DutchaGoGo.com (development/under construction ...Forever?¿?)
Edited by Joshua203, Tue 02 Feb, 2010 12:04: fixed spelling(i may have watched too much utube in college |
#13 Tue 02 Feb, 2010 11:59 |
|
Mighty Gorgon
Luca Libralato
Joined: August 2006
Posts: 7192
Location: Borgo San Michele
|
Re: YouTube BBCode
It's not easy if you don't want to add PHP in template.
You can add an easy fix by adding the post_id var for example (the problem is when 2 videos are posted within the same post).
You could use video ID, but that could lead to security issues and we don't want that...
____________ Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
|
#14 Thu 04 Feb, 2010 00:46 |
|
Joshua203
Joshua 203
Dutch A Go Go
Joined: August 2008
Posts: 1754
Location: Earth, Europe, the Netherlands, Rotterdam
|
Re: YouTube BBCode
this may be a silly question but thats because i don t understand the why of the security leak (no i agree we don t want that ... LOL), but what if i combine the post_id var (put it in the place where it now says utube) and the video id (like now)?
would that be any safer?
sorry if i sound stupid but i m obviously in over my head
PS ..i m also not sure how to use the post_id but i ll look into this and have some tries
thnx
____________ www.DutchaGoGo.com (development/under construction ...Forever?¿?)
|
#15 Thu 04 Feb, 2010 02:03 |
|
|
Page 1 of 2
|
Was this topic useful?
Was this topic useful?
Link this topic |
URL |
|
BBCode |
|
HTML |
|
Similar Topics
Similar Topics
You cannot post new topics You cannot reply to topics You cannot edit your posts You cannot delete your posts You cannot vote in polls You cannot attach files You can download files You cannot post calendar events
|
|
|
|