Welcome to the Second Life Forums Archive

These forums are CLOSED. Please visit the new forums HERE

Video Stream Changer

Cristos Benelli
Nuova Sicilia
Join date: 2 Mar 2007
Posts: 49
07-05-2007 16:17
Hello All:

Has anyone seen a simple, video stream changer script that enables one to enter their titles and URLs in a notecard, with the script automatically creating the channels which are then accessible via Menu once clicking on the screen?

The easily found Freeview TV script is way too complex for my needs.

Thanks to all in advance.

Kind Regards,

Cristos
Lightwave Valkyrie
Registered User
Join date: 30 Jan 2004
Posts: 666
07-05-2007 17:57
i have a Button script for loading videos
it loads and plays video on click a button for each video
-LW
CODE

//Load Video Button by Lightwave Valkyrie
default
{
on_rez(integer start_param)
{llResetScript();}
state_entry()
{
llSetText("Name of video Here",<1,1,1>,1.0); //put floating text of name of video
}

touch_start(integer total_number)
{
llParcelMediaCommandList( [PARCEL_MEDIA_COMMAND_URL, "http://blip.tv/VIDEO NAME HERE.3gp" ] );//put link to video here
llSay(0,"Loading...");
llParcelMediaCommandList ( [PARCEL_MEDIA_COMMAND_STOP] );
llSleep(1);
llParcelMediaCommandList ( [PARCEL_MEDIA_COMMAND_PLAY] );
llSay(0, "Playing");

}
}
_____________________
L$ is the root of all evil
videos work! thanks SL :)
Shadow Subagja
Registered User
Join date: 29 Apr 2007
Posts: 354
07-05-2007 22:41
thats how my tv works, just a notecard with:
moviename=URL

I can give ya the loc in game of my shop to take a look, or if ya need any specific help buildin one up feel free to ask.
hiro Voss
Registered User
Join date: 6 Oct 2006
Posts: 57
I'd like to see your site...
07-06-2007 00:28
Can you send?
Shadow Subagja
Registered User
Join date: 29 Apr 2007
Posts: 354
07-06-2007 02:47
hey hiro thanks for comin by, and definitely appreciate the help workin out some of the kinks in my script!