From: "David Hart" <[EMAIL PROTECTED]>
Subject: RE: ASP as the SRC of a Embedded Real Player
Nicholas,
Cool last name ;-)
I thought I could. Below is some ASP sample code from real. This code uses
a server side dll to read the rm file and send it back to the player(we do
this to secure our videos in a non web published dir). I wrote my own
server side dll to read the rm file. The player tries to play the file but
just hangs on connecting. I don't think it is my dll. What am I doing
wrong? Any ideas? Please let me know.
Thanks,
Dave
ASP code:
Response.Buffer = TRUE
Response.Clear
Response.ContentType = "application/x-pn-realmedia"
Dim vntStream
Set oMyObject = Server.CreateObject("MyObject.BinRead")
vntStream = oMyObject.readBinFile("d:\test.rm")
Response.BinaryWrite(vntStream)
Set oMyObject = Nothing
Response.End
> -----Original Message-----
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED]]On Behalf Of RealForum
> Sent: Thursday, August 12, 1999 12:06 PM
> Subject: Re: ASP as the SRC of a Embedded Real Player
>
>
> From: Nicholas Hart <[EMAIL PROTECTED]>
> Subject: Re: ASP as the SRC of a Embedded Real Player
>
> You can use whatever source you want for an embedded player as long as it
> is http, pnm, local or rtsp and as long as the contents of the
> source are a
> media type playable by the RealPlayer.