Log in

View Full Version : Voscast script



queerfm
01-07-2007, 01:52 PM
Hi i would like to know how they made this script
http://www.vodcasts.tv/mediap.php?feed=15&ep=1

I would like to do the same. for our site.

thetestingsite
01-07-2007, 03:40 PM
<OBJECT ID="MediaPlayer" WIDTH="512" HEIGHT="400" CLASSID="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" TYPE="application/x-oleobject">
<PARAM NAME="FileName" VALUE="url-to-stream">
<PARAM name="AutoStart" VALUE="true">
<PARAM name="ShowControls" VALUE="true">
<param name="ShowStatusBar" value="false">
<PARAM name="ShowDisplay" VALUE="false">
<PARAM NAME="uiMode" VALUE="mini">
<EMBED TYPE="application/x-mplayer2"
SRC="url-to-stream"
NAME="MediaPlayer"
WIDTH="512" HEIGHT="400" ShowControls="1" ShowStatusBar="0" ShowDisplay="0" AutoStart="1"> </EMBED>
</OBJECT>


That will make the player, on the website you provided it was in a frame, so if you wanted that, just make a frames page with the above code in that frame.

Hope this helps.

mburt
01-07-2007, 03:58 PM
You might want to highlight the "url-to-stream" part for the OP.

thetestingsite
01-07-2007, 04:14 PM
Good eye, Mike. Boy, I have just been slacking with my last couple of posts. Ok, edited post and highlighted key parts.

mburt
01-07-2007, 04:53 PM
I have just been slacking with my last couple of posts
Yeah, I hear you have a lot on your plate :p

queerfm
01-08-2007, 05:32 PM
What i want is it to see if there is a new show in there podcast. I then want it to add it to the list of shows? Like http://www.vodcasts.tv/mediap.php it shows nothing then when you type in something like http://www.vodcasts.tv/mediap.php?feed=15 then it will show all feed but not play any of the shows?

I hope you understand what i mean

queerfm
01-14-2007, 03:52 PM
can any one help

thetestingsite
01-14-2007, 03:59 PM
I would say that they either use an SQL database for each feed and update that, or they use XML files and parse that. I did notice that you get a foreach() warning when just accessing the script with an invalid or blank feed id.

Why not try asking them for the script, or see if they can point you in the direction of how to make your own.

Hope this helps.