Unable to download a file from rtmp server using asp.net

Posted by user309815 on Stack Overflow See other posts from Stack Overflow or by user309815
Published on 2010-04-06T08:30:15Z Indexed on 2010/04/07 6:03 UTC
Read the original article Hit count: 505

Filed under:

I am unable to download a file from rtmp server, I'm using the following code:

Response.ContentType = "audio/mpeg";

Response.AppendHeader("Content-Disposition", "attachment; filename=" + mpg);
audiofile = "rtmp://XXX/oflaDemo/" + audiofile;

Response.TransmitFile(audiofile);

It's showing a message that could not find the virtual path.

Could anyone help with this problem?

© Stack Overflow or respective owner

Related posts about rtmp