Unable to download a file from rtmp server using asp.net
- by user309815
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?