QT-FastStart Windows如何运行呢?

C0n*_*0nk 2 qt-faststart

所以我的计算机上有很多 mp4 文件,我读到 QT-FastStart 用于将元数据从文件末尾移动到开头,但我如何使用或运行它?

每次我将文件拖放到 qt-faststart 中时,似乎什么都没有发生?

我从这里下载了64位版本: https://web.archive.org/web/20140206214912/http ://ffmpeg.zeranoe.com/blog/?p=59

我是否需要批处理文件或其他东西或特定的命令行参数才能使其运行?

bar*_*lop 6

注意,QT-FastStart 在这里描述https://manpages.debian.org/stretch/ffmpeg/qt-faststart.1.en.html

qt-faststart 是一个实用程序,可以重新排列 Quicktime 文件,使 moov 原子位于数据前面,从而促进网络流式传输。

它可以用于(也许还有其他目的)在演示问题时制作示例文件。可以获取一个大文件,使用 QT-FastStart 修复它,然后使用 dd 剪切样本。并且示例应该可以播放。而如果你执行了 dd 而没有这样做,那么它就不会或可能不会播放。

看看尼尔的回答qt-faststart infile.mp4 outfile.mp4

不过,QT-FastStart 现在已经集成到 ffmpeg 中。

ffmpeg -i original.3gp -codec copy -movflags +faststart fixed.3gp  
Run Code Online (Sandbox Code Playgroud)