C# WPF 将字节数组转换为视频文件?
我有一个 MPEG 文件,已将其转换为字节数组。目的是让客户端检索此字节数组,然后将 MPEG 文件保存在本地,以便在 WPF 应用程序中使用。
我可以将 MPEG 文件转换为字节数组,但我不知道如何将字节数组转换回 MPEG 或将字节数组保存为 MPEG 文件。
我该怎么做?
顺便说一句,有关将字节数组转换为 WPF 支持的任何视频格式的任何信息都会有所帮助。
I have a MPEG file which I have converted into a byte array. The intention is for a client to retrieve this byte array then save the MPEG file locally where it will be used in an WPF application.
I can convert the MPEG file to a byte array, but I don't know how to convert the byte array back to MPEG or save the byte array as an MPEG file.
How do I do this?
BTW any infomation about converting a byte array to any video format which WPF supports would be helpful.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以调用
File.WriteAllBytes
将字节数组写入文件。如果字节数组包含不同的格式(例如 DivX),您可能需要使用 ffmpeg 将文件转码为 MPEG。
You can call
File.WriteAllBytes
to write a byte array to a file.If the byte array contains a different format (eg, DivX), you'll need to transcode the file to MPEG, perhaps using ffmpeg.
System.IO.File.WriteAllBytes(myFileName, mpegDataByteArray) 怎么样?
What about
System.IO.File.WriteAllBytes(myFileName, mpegDataByteArray)
?