unable to download a file from rtmp server
- by user309815
Hi
Team I want to download an audio file from red5 server using rtmp server.
string strUri;
strUri = "rtmp://XXX/oflaDemo/" + Session["streamName"].ToString();
string strUploadto;
strUploadto = Server.MapPath("") + "\Audio\" + "myaudio.flv";
WebClient webClient = new WebClient();
…