<?php
$filename = $_SERVER[argv][1]; //cli실행으로 php test.avi 첫번째 인자를 파일명을 받게함 ,편집요망~
$movie = new ffmpeg_movie($filename, false); //ffmpeg모듈이 정상적으로 설치돼야합니다
if (is_object($movie) === false) {
die("movie Error");
}
$duration = floor($movie->getDuration()); //플레이타임 추출
if ($duration == 0) {
die("duration Error");
}
$codec['video'] = $movie->getVideoCodec(); //비디오코덱추출
$codec['audio'] = $movie->getAudioCodec(); //오디오코덱추출
$codec['channel'] = $movie->getAudioChannels(); //채널 추출
if ($codec['video'] == "") {
die("video Error");
}
$rand = mt_rand(0, 10); //이부분은 프레임중 랜덤하게 추출하는것이라 구간을 작게잡아야 빠릅니다
$frame = $movie->getFrame($rand);
if (is_object($frame) === false) {
die("frame Error");
}
$codec['height'] = $frame->getHeight();
$codec['width'] = $frame->getWidth();
?>
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 30 |
아우겐나이스
|
21년 전 | 4057 | |
| 29 |
아우겐나이스
|
21년 전 | 4446 | |
| 28 |
아우겐나이스
|
21년 전 | 3470 | |
| 27 | 21년 전 | 5843 | ||
| 26 | 21년 전 | 3125 | ||
| 25 | 21년 전 | 6093 | ||
| 24 | 18년 전 | 3655 | ||
| 23 | 21년 전 | 3645 | ||
| 22 | 21년 전 | 4252 | ||
| 21 | 21년 전 | 3823 | ||
| 20 | 21년 전 | 4233 | ||
| 19 | 21년 전 | 6688 | ||
| 18 | 21년 전 | 4737 | ||
| 17 | 21년 전 | 6999 | ||
| 16 | 21년 전 | 4181 | ||
| 15 | 21년 전 | 2642 | ||
| 14 | 21년 전 | 4983 | ||
| 13 | 21년 전 | 3406 | ||
| 12 |
Recluse
|
21년 전 | 3892 | |
| 11 |
아우겐나이스
|
21년 전 | 3576 | |
| 10 |
Recluse
|
21년 전 | 3402 | |
| 9 | 21년 전 | 4012 | ||
| 8 | 21년 전 | 5183 | ||
| 7 | 21년 전 | 4772 | ||
| 6 | 21년 전 | 5697 | ||
| 5 | 21년 전 | 4125 | ||
| 4 | 21년 전 | 4856 | ||
| 3 | 21년 전 | 4752 | ||
| 2 | 21년 전 | 3254 | ||
| 1 | 22년 전 | 4345 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기