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.
我使用 PHP 作为服务器端脚本。我想知道,如何使用 php 控制视频的质量。这是我想做的。
我将使用任何设备捕获视频并上传到服务器,在检索视频时,我想为要显示的视频质量提供一些选项。类似于 youtube 如何提供一些设置 240p、260p、480p 等
非常感谢
您可以使用 wowza 等软件进行即时转换 (http://www.wowza.com/)
或者,您可以将您上传的视频(上传后直接)转换为 ffmpeg。
exec("ffmpeg -i $input -b 128k $output", $output);
然后根据所选比特率链接到不同的视频文件。