I Have converted the mp4 file to byte array or (stream), Now i want to convert that byte array or (stream) to Mp4 file, i have searched in web regarding this concept but my problem not yet solved please give me guidence.
This is my code i have stream and byte[], i want to convert to mp4 file NetworkStream stream = client.GetStream(); int i; i = stream.Read(bytes, 0, bytes.Length);File.WriteAllBytes(@"C:\Foo.mp4", bytes);
File.WriteAllBytes("Foo.mp4", bytes)new FileStream()and write it to disk...