Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用此代码将 youtube 视频转换为 mp4。但它需要很多时间。请任何人都可以帮助我。我的代码如下所示。
'ffmpeg -i "'.$from.'" -ab '.$audio.' -vb '.$video.' -vol '.$volume.' -ac 2 -acodec mp2 -ss '.$start.' -t '.$duration.' "/ebs/dls/mp4/'.$to.'_dl.mp4"'
“花费很多时间”并不表示特定问题,或以任何其他方式有用:
这仅意味着该过程花费的时间比您想要/预期的要长。您对应用程序的性能有什么要求?您可接受的延迟限制是多少?您想处理多少个视频,例如每小时?
您确实意识到将视频文件转换为另一种格式是一个耗时的过程,对吧?该文件必须被解码然后再次编码,这是计算密集型的。此外,总时间与输入文件的长度和分辨率成正比。如果您希望在几秒钟内转换一部 1 小时的高清电影,您可能期望过高。