如何在java中将Bystream视频转换为文件视频

发布于 2024-10-31 14:51:43 字数 113 浏览 0 评论 0原文

我正在构建一个项目,将视频转换为字节流,进行一些加密,然后将已加密的流再次转换为视频文件。我正在使用 mpeg 视频。

有人知道如何从字节流转换为文件视频吗?以防万一,mpeg 文件...之前谢谢

I'm build a project to convert video to byte stream, doing some encryption, and convert agaian stream that have been encrypting into video file. I am using mpeg video..

Anybody know how to convert from byte stream to file video? in case, mpeg file...thanks before

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

魄砕の薆 2024-11-07 14:51:43

要将文件转换为字节流,只需使用 FileInputStream 打开它即可。

FileInputStream fis = new FileInputStream ("filename.mov");

您可能需要缓冲它,因为视频文件非常大。

BufferedInputStream bis = new BufferedInputStream (fis);

要写出文件,只需使用 FileOutputStream: 打开它

FileOutputStream fos = new FileOutputStream ("fileout.mov");

,然后使用 FileOutputStream 写入它。

To convert a file into a byte stream, simply open it using FileInputStream.

FileInputStream fis = new FileInputStream ("filename.mov");

You'll probably want to buffer it as video files are quite large

BufferedInputStream bis = new BufferedInputStream (fis);

To write out the file, simply open it using FileOutputStream:

FileOutputStream fos = new FileOutputStream ("fileout.mov");

and then write to it using the FileOutputStream.

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