I have an windows phone 8 app and I am recording audio using Microphone successfully. I am uploading recorded stream into the server and the stream uploads well but unable play the uploaded file.
Server code :
public void SendAudio(string fileName, Stream audioStream)
{
using (FileStream fileStream = File.Create(@"C:\Hosting\" + fileName))
{
audioStream.CopyTo(fileStream);
}
}
Client Code :
// The stream object contains recorded audio. If I save the stream audio into local windows phone storage and playback, it is working successfully.
public void SendAudioFileToServer()
{
string fileName = "xyz.wav";
string address = "http://localhost:4343/SendAudio/xyz.wav";
HttpWebRequest request = HttpWebRequest.Create(address) as HttpWebRequest;
request.Method = "POST";
request.ContentType = "application/x-www-form-urlencoded";
request.BeginGetRequestStream(new AsyncCallback(GetRequestStreamCallback), request);
}
private void GetRequestStreamCallback(IAsyncResult asynchronousResult)
{
HttpWebRequest request = (HttpWebRequest)asynchronousResult.AsyncState;
// End the operation
Stream postStream = request.EndGetRequestStream(asynchronousResult);
byte[] fileBytes = stream.ToArray();
postStream.Write(fileBytes, 0, fileBytes.Length);
postStream.Close();
request.BeginGetResponse(new AsyncCallback(GetResponseCallback), request);
}