C# WPF 将字节数组转换为视频文件?

发布于 2024-10-12 07:29:56 字数 213 浏览 1 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

来世叙缘 2024-10-19 07:29:56

您可以调用 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.

智商已欠费 2024-10-19 07:29:56

System.IO.File.WriteAllBytes(myFileName, mpegDataByteArray) 怎么样?

What about System.IO.File.WriteAllBytes(myFileName, mpegDataByteArray)?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文