이 글에서는 주로 ffmpeg를 사용하여 PHP를 사용하여 비디오에 자막을 추가하는 방법을 소개합니다. ffmpeg를 사용하여 PHP를 사용하여 비디오에 문자를 추가하는 기술을 분석합니다. 필요한 친구는 참고할 수 있습니다. 그것.
이 기사의 예에서는 ffmpeg를 사용하여 PHP에서 동영상에 자막을 추가하는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 구체적인 구현 방법은 다음과 같습니다.
<?php $dir = './'; // set to current folder if ($handle = opendir($dir)) { while(false!== ($file = readdir($handle))) { if ( is_file($dir.$file) ){ if (preg_match("'\.(avi)$'", $file) ){ $sub_file = str_ireplace(".avi", ".srt", $dir.$file); $idx_file = str_ireplace(".avi", ".idx", $dir.$file); $thumb_file = str_ireplace(".avi", ".jpg", $dir.$file); $out_file = str_ireplace(".avi", ".mp4", $dir.$file); flv_convert_get_thumb($dir.$file, $sub_file, $idx_file, $thumb_file, $out_file); } else{ continue; } } } closedir($handle); } //flv_convert_get_thumb('input.avi', 'input.srt', 'output.jpg', 'output.ogm'); // code provided and updated by steve of phpsnaps ! thanks // accepts: // 1: the input video file // 2: path to thumb jpg // 3: path to transcoded mpeg? function flv_convert_get_thumb($in, $in_sub, $in_idx, $out_thumb, $out_vid){ // get thumbnail $cmd = 'ffmpeg -v 0 -y -i '.$in.' -vframes 1 -ss 250 -vcodec mjpeg -f rawvideo -s 286x160 -aspect 16:9 '.$out_thumb; $res = shell_exec($cmd); // $res is the output of the command // transcode video $cmd = 'mencoder '.$in.' -o '.$out_vid.' -sub '.$in_sub.' -subfont-text-scale 3.0 -subpos 99 -af volume=10 -aspect 16:9 -of avi -noodml -ovc x264 -x264encop$ $res = shell_exec($cmd); } ?>
이 글이 모든 분들의 PHP 프로그래밍 설계에 도움이 되기를 바랍니다.
원본 주소: http://www.manongjc.com/article/839.html
관련 자료:
비디오 썸네일과 비디오를 얻기 위해 FFMPEG를 사용하는 PHP 소스 코드 총 재생 시간
php가 비디오의 그림을 가로챕니다
php ffmpeg가 비디오의 지정된 프레임을 그림으로 가로챕니다
위 내용은 ffmpeg의 내용을 포함하여 PHP로 비디오에 텍스트 자막을 추가하기 위해 ffmpeg를 사용하는 방법을 소개합니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.