>  기사  >  백엔드 개발  >  PHP를 사용하여 모든 형식의 비디오를 flv로 변환하는 무료 성인 영화 코드

PHP를 사용하여 모든 형식의 비디오를 flv로 변환하는 무료 성인 영화 코드

WBOY
WBOY원래의
2016-07-29 08:40:372640검색

코드 복사 코드는 다음과 같습니다.


define("ROOT_DIR",dirname(__FILE__));
class EcodeFlv {
var $fromFile; //업로드된 파일
var $toFilePath; //파일 경로 저장
var $toPicPath; //사진 경로 저장
var $mpeg; ffmpeg .exe 파일 경로
var $mencode; //mencode.exe 파일 경로
var $cmdToFile; //파일 변환 명령
var $cmdToPic; //그림 변환 명령 toFileName ; //변환된 파일 이름
var $mpegComm; //ffmpeg.exe에 대한 변환 명령
var $mencodeComm; //mencode.exe에 대한 명령
var $mencodeType;
var $midi; //mdi.exe 경로
var $cmdMidi; //mdi.exe 명령
//초기화 클래스
function EcodeFlv($fromFile,$toFilePath,$ toPicPath,$mpeg,$mencode,$midi) {
$this->mpegComm = false
$this->mencodeComm = false
$this->fromFile; 🎜 >$this->toFilePath = $toFilePath;
$this->toPicPath = ROOT_DIR."/".$toPicPath
$this->mpeg = ROOT_DIR.$mpeg; this ->mencode = ROOT_DIR.$mencode;
$this->midi = ROOT_DIR.$midi
$this->mpegType=array (
"audio/x-mpeg"=> ; ".mp3",
"video/mpeg"=>".mpeg",
"video/3gpp"=>".3gp",
"video/x-ms-asf" = >".asf",
"video/x-msvideo"=>".avi"
)
$this->mencodeType = array(
"application/vnd. rn -realmedia"=>".rm",
"audio/x-pn-realaudio"=>".rmvb",
"audio/x-ms-wmv"=>".wmv " ,
);
}
//파일 형식 확인
function checkType() {
if(function_exists(mime_content_type)){
return false;
}else{
//$contentType = mime_content_type($this->fromFile);
$exe = "D:serverphpextrasmagic";
$handel = new finfo(FILEINFO_MIME, $exe); = $handel->file($this->fromFile);
}
foreach($this->mpegType as $index=>$key){
if($contentType == $ index){
$name = md5(date("Ymd").tiime())
$this->toFileName = $name;
true 반환
}
}
foreach($this->mencodeType as $index=>$key){
if($contentType == $index){
$name = md5(date("Ymd").time());
$this->toFileName = $name;
$this->mencodeComm = true
🎜 >}else{
return false;
}
}
}
//파일 및 사진 크기 설정
function setSize($flvSize,$picSize) {
$ flvWidth = $flvSize[0]
$flvHeight = $flvSize[1];
$picWidth = $picSize[0]
$picHeight =
$picName = $ this->toPicPath.$this->toFileName.".jpg"
$flvName = $this->toFilePath.$this->toFileName.".flv"; ROOT_DIR ."/".$flvName;
$size = $picWidth."x".$picHeight;
if($this->mpegComm){
$this->cmdToFile= "$ this ->mpeg -i $this->fromFile -y -ab 56 -ar 22050 -b 500 -r 15 -s $flvWith*$flvHeight $flvName";
}
elseif($this- > ;mencodeComm){
$this->cmdToFile = "$this->mencode $this->fromFile -vf scale=$flvWidth:$flvHeight -ffourcc FLV1 -of lavf -ovc lavc -lavcopts vcodec= flv :vbitrate=70:acodec=mp3:abitrate=56:dia=-1 -ofps 25 -srate 22050 -oac mp3lame -o $flvName";
}
$this->cmdToPic = "$this - >mpeg -i $toMdi -y -f image2 -ss 8 -t 0.003 -s $size $picName";
$this->cmdMidi = "$this->midi $toMdi /k";
echo $this->cmdToPic;
}
//변환 시작
function toEcode() {
set_time_limit(0)
exec($this->cmdToFile, $ flvStatus)
exec($this->cmdToPic,$picStatus)
exec($this->cmdMidi,$mStatus)
}
}
?


위 내용은 PHP를 사용하여 무료 성인 영화의 내용을 포함하여 모든 형식의 비디오를 flv로 변환하는 무료 성인 영화용 코드를 소개합니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.