我想要做的是从上传的视频中创建60秒的FLV。 但我不想总是得到前60秒,如果可能的话我想得到视频的中间部分。但如果不是,我想获得一个视频文件的随机60秒部分并创建flv。
我使用以下脚本制作FLV文件
$call="/usr/bin/ffmpeg -i ".$_SESSION['video_to_convert']." -vcodec flv -f flv -r 20 -b ".$quality." -ab 128000 -ar ".$audio." ".$converted_vids.$name.".flv -y 2> log/".$name.".txt";
$convert = (popen($call." >/dev/null &", "r"));
pclose($convert);
所以我的问题是,如何从视频中随机获得60秒并转换它?
答案 0 :(得分:9)
您可以使用此命令切片视频(1):
ffmpeg -sameq -ss [start_seconds] -t [duration_seconds] -i [input_file] [output_file]
您可以使用此命令获取视频时长(2):
ffmpeg -i <infile> 2>&1 | grep "Duration" | cut -d ' ' -f 4 | sed s/,//
所以只需使用您喜欢的脚本语言并执行此操作(伪代码):
* variable start = (max_duration - 60) / 2
* execute system call command (1) with
[start_seconds] = variable start # (starts 30s before video center)
[duration_seconds] = 60 # (ends 30s after video center)
[input_file] = original filename of video
[output_file] = where you want the 60-second clip to be saved
在php中将是:
$max_duration = `ffmpeg -i $input_file 2>&1 | grep "Duration" | cut -d ' ' -f 4 | sed s/,//`;
$start = intval(($max_duration - 60) / 2);
`ffmpeg -sameq -ss $start -t 60 -i $input_file $output_file`;
答案 1 :(得分:2)
This简短教程介绍了使用FFMPEG剪切视频的方法。基本语法包括以下开关:
-ss [start_seconds]
以秒为单位设置起点。-t duration
告诉FFMPEG剪辑应该有多长。所以你的电话会是这样的:
$call="/usr/bin/ffmpeg -i ".$_SESSION['video_to_convert']." \
-vcodec flv \
-f flv \
-r 20 \
-b ".$quality." \
-ab 128000 \
-ar ".$audio." \
-ss 0 \
-t 60 \
".$converted_vids.$name.".flv -y 2> log/".$name.".txt"
获取前60秒的视频。
正如我的评论所述,认真审视Wadsworth Constant对您的需求是一个好主意。