只是想知道这些网站(以及从音频剪辑,图像,文档生成Flash电影的许多其他软件)如何工作?他们如何将媒体文件(音频/图像/视频)编译成服务器上的flv电影?可以使用一些开源技术来完成同样的工作。
答案 0 :(得分:1)
答案 1 :(得分:0)
他们可能只是上传文件,然后在其上运行FFmpeg之类的工具。
将任何音频文件(ffmpeg可以处理)转换为mp3的php示例如下:
<?php
// upload audio file and save its file name as $file_name
$short_name = substr($file_name, 0, strpos($file_name, ".")); // get the file name without the file extension
system("ffmpeg -i \"$file_name\" \"$short_name.mp3\"");
?>
You can download your file <a href="output.mp3">here</a>
你可能想让它更安全,但这应该有效。我实际上对ffmpeg命令行选项不太了解,但你可以在这里找到更多信息:http://ffmpeg.org/ffmpeg-doc.html