Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
 All Forums
 Snitz Forums 2000 MOD-Group
 MOD Add-On Forum (W/Code)
 Online Video Mod addon?

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!
Before posting, make sure you have read this topic!

Screensize:
UserName:
Password:
Format Mode:
Format: BoldItalicizedUnderlineStrikethrough Align LeftCenteredAlign Right Horizontal Rule Insert HyperlinkInsert EmailInsert Image Insert CodeInsert QuoteInsert List
   
Message:

* HTML is OFF
* Forum Code is ON
Smilies
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Clown [:o)]
Black Eye [B)] Eight Ball [8] Frown [:(] Shy [8)]
Shocked [:0] Angry [:(!] Dead [xx(] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
Check here to subscribe to this topic.
   

T O P I C    R E V I E W
leatherlips Posted - 22 June 2008 : 19:13:45
Is it possible to have some addons for the online video mod? I'd like it to also be able to insert Daily Motion videos. Also, HULU has videos that would be cool to be able to add as well.<
11   L A T E S T    R E P L I E S    (Newest First)
leatherlips Posted - 15 July 2008 : 14:58:42
I'm having trouble getting this video tag to work. I must be adding the code in the wrong places.<
leatherlips Posted - 15 July 2008 : 14:42:24
quote:
Originally posted by radiodelicate

is it possible to create a profile field so that users can have a youtube video on their profile pages?

I believe so. If you install this video mod then you can use one of the existing fields in the profile such as "Latest News". You can rename it to "My Media" or something like that. Then all you have to do is paste the url to the video in your profile page between the [video][/video] tags and it should work.<
radiodelicate Posted - 10 July 2008 : 06:50:04
is it possible to create a profile field so that users can have a youtube video on their profile pages?<
balexandre Posted - 26 June 2008 : 10:08:43
it's not All-in-One

it is more like 4-in-one plus all the rest <
leatherlips Posted - 24 June 2008 : 10:14:46
quote:
Originally posted by balexandre

but leatherlips, what is wrong with the current MOD?

can't you use it like it is?

There is nothing wrong with the current mod. I just thought that since there is now the possibilty of an "all in one" video tag it would be nice to have a rewrite of the mod to be able to use it.<
balexandre Posted - 24 June 2008 : 09:39:29
but leatherlips, what is wrong with the current MOD?

can't you use it like it is?<
MarcelG Posted - 23 June 2008 : 14:04:39
quote:
Originally posted by leatherlips

Can the instructions be rewritten to have the new "all in one" [video] tag?

Bruno, that's were you come in. In case of questions, just shout.

BTW ; the [video][/video] tags do not cover the Windows Media Player, Quick Time tag etc. It only covers the previously known tags [tube] for youtube, [gvid] for google video and [dm] for dailymotion (but that one wasn't in Bruno's version I think...)
And, additionally you can now simply put the embed code provided by those videosites inbetween the tags, instead of using the permalinks.<
leatherlips Posted - 23 June 2008 : 12:52:14
Can the instructions be rewritten to have the new "all in one" [video] tag?<
balexandre Posted - 23 June 2008 : 11:44:07
it's the same, but using only one tag [ video ] [ /video ] instead all the ones I use...

but the source (the "guy" that did the code and had all the work) is the same --> MarcelG

eheh <
leatherlips Posted - 23 June 2008 : 10:58:52
I'm a little confused.

Is this an add on to the Online Video MOD that balexandre put together or is it an entirely new video mod? In other words, do I need to have his mod installed before I make the changes you posted or can I just do what you've posted and be done with it?<
MarcelG Posted - 23 June 2008 : 01:59:31
Leatherlips, I have the function for DailyMotion, plus some others available here, starting at line 2008 :
http://oxle.com/source.asp?page=inc_func_common.asp
There are two functions you need:
- the function FixUrls(fString)
- the function ReplaceMediaTags(fString)

Also, need a small change in the FormatStr function at the beginning:
	fString = ReplaceCodeTags(fString)
	'replace old tags with new video tag:
 	fString = replace(fString,"[gvid]","[video]")
 	fString = replace(fString,"[/gvid]","[/video]")
 	fString = replace(fString,"[dm]","[video]")
 	fString = replace(fString,"[/dm]","[/video]")
 	fString = replace(fString,"[tube]","[video]")
 	fString = replace(fString,"[/tube]","[/video]")
 	'now interpret the new media tags
	fString = ReplaceMediaTags(fString)

And, one addition at the end of the FormastStr function
	fString = FixUrls(fString)
	FormatStr = fString
	on Error goto 0
end function


One line added to the ChkUrls function:
				(UCase(Right(strArray(Counter-1), 7)) <> "[VIDEO]") and _

Oh, and a new js file: http://oxle.com/video.js
It's not polished, but it's all there.

How to post a video? -> use the [video][/video] tags, and inbetween them simply but the embedding code found at YouTube, DailyMotion, GoogleVideo or MySpace (=untested!).
Enjoy.<

Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.05 seconds. Powered By: Snitz Forums 2000 Version 3.4.07