即时分割视频文件
我正在使用 php 脚本从第 3 方服务器(主要是 flv、mp4)下载视频,下载后我将在 1:30 分钟处剪切视频 - 现在可以播放了。是否可以只下载视频的一部分(1-2 分钟)而不是整个文件,并且仍然能够播放它(现在的方式只是浪费带宽、CPU...)?
I'm downloading videos from a 3rd party server (mostly flv, mp4) using php script, after download I'm cutting video at 1:30 mins - now it's ready to be played. Is it possible to download only part (1-2 mins) of the video instead of whole file and still being able to play it (the way it's now it's simply wasting bandwidth, CPU...)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这很难做到,因为它要求您的脚本能够理解 MP4 或 FLV。但是,这个可能对您有帮助(请注意,它仍然需要安装 ffmpeg、FLVTools2 和 Mencode)。
This is very hard to do, as it requires your script to understand MP4 or FLV. However, this may help you (please note that it still requires ffmpeg, FLVTools2 and Mencode to be installed).
剪切 flv 或 mp4 涉及一些索引更新、寻找可能的剪切点等。在 php 中构建它似乎有点矫枉过正。研究一些可以一步下载并剪切并从 php.ini 中调用这些工具的工具。 FFMpeg 和 MPlayer 或许能够做到这一点。
Cutting a flv or mp4 involves some index updating, looking for a possible cutting point etc. Building that in php seems overkill. Look into some Tools that can download and cut in one step and call those from your php. FFMpeg and MPlayer may be able to do that.