如何在Java中进行.MOV到3GP的转换操作
我想将“.MOV”扩展文件转换为java中的3GP扩展文件。目前我正在使用 Java Media Framework 来创建 .MOV 文件。但现在我的需要是将这些视频转换为 3GP。我用谷歌搜索了我的问题,但找不到任何解决方案。我该怎么做?任何帮助将不胜感激。
I wanna convert ".MOV" extentioned files to 3GP extentioned Files in java. Currently i m using Java Media Framework for creation opetion of .MOV file. But now my need is converting these videos to 3GP. I googled my issue but i couldnt get any solution. How can i do this? Any help will be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议您使用xuggler(ffmpeg的java包装库)。通过他们捆绑的 ffmpeg,您可以使用此命令测试您的视频之一。
<代码>
Here is a simple class you can use with xuggler
If your source audio sample rate and channels are not equal you will need to add an audio resampler (also ez to do with xuggler)
I suggest that you use xuggler (java wrapper library for ffmpeg). With their bundled ffmpeg you can test one of your videos with this command.
Here is a simple class you can use with xuggler
If your source audio sample rate and channels are not equal you will need to add an audio resampler (also ez to do with xuggler)