MP4Box 与 Qt-faststart 比较

发布于 2024-10-08 19:13:21 字数 121 浏览 2 评论 0原文

由于我对 qt-faststart 一无所知(对 MP4Box 也有一点了解),是否有关于它们的在线资源(没有找到太多)?哪个更好?他们的区别又是什么呢? 特别是如果我想为 Android 设备创建提示视频文件,哪一个是最好的?

Since I have no idea about qt-faststart (and a little with MP4Box) are there any online resources about them(haven't found much)? Which is better? What about their differences?
Especially if i want to create hinted video files for android devices, which one is the best?

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

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

发布评论

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

评论(2

风启觞 2024-10-15 19:13:21

一种是单一用途的工具,一种是小工具的虚拟工具箱。

  • qt-faststart:单一目的:移动 MOOV 原子。就是这样,没有别的了。体积小(OSX 上可执行文件为 13kb),易于编译。
  • MP4Box:更大(~2500 KB)并且功能更多。来自文档

MP4Box 是一个多媒体打包程序,具有
大量的功能:
转换、分裂、暗示、
倾销及其他

One is a single purpose tool, one is a virtual tool chest of gadgets.

  • qt-faststart: Single purpose: Move the MOOV atom. That's it, nothing else. Small (13kb executable on OSX) easy to compile.
  • MP4Box: Larger (~2500 KB) and capable of oh-so-much-more. From the documentation:

MP4Box is a multimedia packager, with
a vast number of functionalities:
conversion, splitting, hinting,
dumping and others

肤浅与狂妄 2024-10-15 19:13:21

你的问题有点模棱两可:

  • “提示视频文件”指的是流媒体服务器(例如苹果的旧达尔文流服务器)使用的“提示轨道”的概念,用于从媒体轨道(音频、视频……)形成RTP数据包。 .)。这里没有任何特定于 Android 的内容。无论如何,MP4Box 可用于生成提示音轨,使用以下命令:

    MP4Box -提示文件.mp4
    
  • qt-faststart 的作用是重新排序文件中的框,以帮助渐进式下载和播放文件。这和暗示完全没有关系。 MP4Box 还可用于更改框的顺序并控制不同轨道(音频、视频、字幕...)的有效负载的交错,使用:

    MP4Box -inter 500 file.mp4 
    

交错窗口为 500 毫秒。

Your question is a bit ambiguous:

  • "hinted video files" refer to the notion of "hint tracks" used by streaming servers (such as Apple's old Darwin Streaming Servers) to form RTP packets from media tracks (audio, video ...). There is nothing specific to Android here. Anyway, MP4Box can be used for producing the hint tracks, using commands like:

    MP4Box -hint file.mp4
    
  • What qt-faststart does is reorder the boxes in the file to help progressive download and playback of the file. It is not at all related to hinting. MP4Box can also be used to change the order of the boxes and to control the interleaving of the payload of the different tracks (audio, video, subtitles ...) using:

    MP4Box -inter 500 file.mp4 
    

for an interleaving window of 500 ms.

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