in reply to Download Streaming Media?

MMS uses a proprietary protocol. Microsoft has not released a specification for it. The SDP project (http://sdp.ppona.com/) is working on reverse engineering the protocol. Nobody has implemented a Perl interface.

Do you need to the download the files through the streaming interface? Are there files on disk you can copy? You could copy the files using a standard mechanisms, like SMB, NFS, FTP, HTTP, SSH, etc.

Replies are listed 'Best First'.
Re: Re: Download Streaming Media?
by Itatsumaki (Friar) on Apr 18, 2003 at 21:26 UTC

    Ahh, that answers it then. I'll check on SDP, but I'll just have to set up an FTP server then. I wanted to avoid that since the mms was already up-and-running. If MS has released an API to it, I suppose someone could implement a wrapper to it but... why go to that much trouble to replace FTP? :)

    Thanks for your help,
    Tats
      The idea behind it all is "content control". That's why it is not to be expected that Microsft will ever release the specification for MMS.

      BTW the home page for the SDP project is here.

      If you're looking for a more open alternative to MMS, you can use the Shoutcast streaming protocol, which is more openly based on HTTP. Apache can serve as such a server, or something very similar, with mod_perl and the module Apache::MP3. That way, you get the best of both worlds.