FFMPEG 설치

· 13년 전 · 1573
 test os : CentOS release 5.7 (Final)
 
- 소스 받기
cd /usr/local/src; mkdir ffmpeg ; cd ffmpeg
 
Download GNU tarball 클릭해서 다운로드
 
 
- 압축 풀기
 
bunzip2 essential-20061022.tar.bz2 ; tar xvf essential-20061022.tar
tar zxvf flvtool2_1.0.5_rc6.tgz
tar zxvf lame-3.99.tar.gz
tar zxvf libogg-1.1.3.tar.gz
tar zxvf libvorbis-1.1.2.tar.gz
tar xvzfp ffmpeg-php-trunk.tar.gz
 
 
 
- 코덱 디렉토리 생성
 
mkdir /usr/local/lib/codecs/
mv essential-20061022/* /usr/local/lib/codecs
chmod -R 755 /usr/local/lib/codecs/
 
 
 
- 최신 버전 적용위해 svn 설치
 
yum install subversion
yum install ruby
yum install ncurses-devel
 
 
 
- 최신 버전 가져오기
 
 
 
 
 
 
- LAME 설치
 
cd lame-3.99
./configure
make
make install
 
 
 
-  libOGG 설치
 
cd ../libogg-1.1.3
./configure
make
make install
 
 
 
- libVorbis 설치
 
ogg 버전이 낮다고 나와서 아래처럼 설치
yum -y install libogg
 
cd ../libvorbis-1.1.2
./configure
make
make install
 
 
 
-  flvtool2 설치
 
cd ../flvtool2_1.0.5_rc6
ruby setup.rb config
ruby setup.rb setup
ruby setup.rb install
 
 
- yasm 설치
cd ../
tar xvzfp yasm-0.8.0.tar.gz
cd yasm-0.8.0
./configure
make; make install
 
- MPlayer 설치 ---> 에러.
 
cd ../mplayer/
vi configure
 
아래부분 주석
  50 #if ! test -e ffmpeg ; then
  51 #    echo "No FFmpeg checkout, press enter to download one with git or CTRL+C to abort"
  52 #    read tmp
  53 #    if ! git clone --depth 1 git://git.videolan.org/ffmpeg.git ffmpeg ; then
  54 #        rm -rf ffmpeg
  55 #        echo "Failed to get a FFmpeg checkout"
  56 #        exit 1
  57 #    fi
  58 #    touch ffmpeg/mp_auto_pull
  59 #fi
 
./configure
make
make install
 
 
 
- FFMPEG 설치
 
mkdir /usr/local/src/ffmpeg/ffmpeg/tmp
chmod 1777 /usr/local/src/ffmpeg/ffmpeg/tmp
export TMPDIR=/usr/local/src/ffmpeg/ffmpeg/tmp
 
cd ../ffmpeg
./configure --enable-libmp3lame --enable-libvorbis --disable-mmx --enable-shared
make
make install
 
 
- 코덱 셋업
 
ln -s /usr/local/lib/libavformat.so /usr/lib/libavformat.so
ln -s /usr/local/lib/libavcodec.so /usr/lib/libavcodec.so
ln -s /usr/local/lib/libavutil.so /usr/lib/libavutil.so
ln -s /usr/local/lib/libmp3lame.so /usr/lib/libmp3lame.so
 
 
- FFMPEG-PHP 설치
 
mkdir /usr/local/include/ffmpeg
cp -p /usr/local/src/ffmpeg/ffmpeg/libavformat/avio.h /usr/local/include/ffmpeg/
cp -p /usr/local/src/ffmpeg/ffmpeg/libavformat/avformat.h /usr/local/include/ffmpeg/
cp -p /usr/local/src/ffmpeg/ffmpeg/libavcodec/avcodec.h /usr/local/include/ffmpeg/
cp -pv /usr/local/src/ffmpeg/ffmpeg/libswscale/swscale.h /usr/local/include/ffmpeg/
cp -pv /usr/local/src/ffmpeg/ffmpeg/libavutil/avutil.h /usr/local/include/ffmpeg/
 
cd /usr/local/src/ffmpeg/trunk/ffmpeg-php
phpize
./configure
make
make install
 
cd modules/
cp -pv ffmpeg.so /usr/local/lib
 
 
- php.ini 설정
 
extension_dir 경로 잡힌곳에 복사
extension=ffmpeg.so 추가
 
- 확인
 
php -r "phpinfo();" | grep ffmpeg
 
ffmpeg
ffmpeg-php version => 0.6.3
ffmpeg-php built on => Oct 24 2011 12:50:21
ffmpeg-php gd support  => enabled
ffmpeg libavcodec version => Lavc52.108.0
ffmpeg libavformat version => Lavf52.93.0
ffmpeg swscaler version => SwS0.12.0
ffmpeg.allow_persistent => 0 => 0
ffmpeg.show_warnings => 0 => 0
 
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
13년 전 조회 1,412
13년 전 조회 1,601
13년 전 조회 1,453
13년 전 조회 1,787
13년 전 조회 1,834
13년 전 조회 1,733
13년 전 조회 3,560
13년 전 조회 1,364
13년 전 조회 1,623
13년 전 조회 1,477
13년 전 조회 1,975
13년 전 조회 1,713
13년 전 조회 2,391
13년 전 조회 2,724
13년 전 조회 2,072
13년 전 조회 3,966
13년 전 조회 2,212
13년 전 조회 1,560
13년 전 조회 3,013
13년 전 조회 3,439
13년 전 조회 1,273
13년 전 조회 1,422
13년 전 조회 1,331
13년 전 조회 1,438
13년 전 조회 1,339
13년 전 조회 1,606
13년 전 조회 2,835
13년 전 조회 1,297
13년 전 조회 1,280
13년 전 조회 1,421
13년 전 조회 1,384
13년 전 조회 1,303
13년 전 조회 1,593
13년 전 조회 1,560
13년 전 조회 1,297
13년 전 조회 1,309
13년 전 조회 2,325
13년 전 조회 1,526
13년 전 조회 1,897
13년 전 조회 1,242
13년 전 조회 1,852
13년 전 조회 1,411
13년 전 조회 1,259
13년 전 조회 1,539
13년 전 조회 3,086
13년 전 조회 1,699
13년 전 조회 2,412
13년 전 조회 1,292
13년 전 조회 1,322
13년 전 조회 1,574
13년 전 조회 1,301
13년 전 조회 2,205
13년 전 조회 1,221
13년 전 조회 1,272
13년 전 조회 1,585
13년 전 조회 1,393
13년 전 조회 1,292
13년 전 조회 1,429
13년 전 조회 1,442
13년 전 조회 1,308
13년 전 조회 3,131
13년 전 조회 2,255
13년 전 조회 2,121
13년 전 조회 1,324
13년 전 조회 1,273
13년 전 조회 1,370
13년 전 조회 1,590
13년 전 조회 1,385
13년 전 조회 1,945
13년 전 조회 2,033
13년 전 조회 1,624
13년 전 조회 1,752
13년 전 조회 2,803
13년 전 조회 3,126
13년 전 조회 6,410
13년 전 조회 1,305
13년 전 조회 1,754
13년 전 조회 1,310
13년 전 조회 1,602
13년 전 조회 2,213
13년 전 조회 1,810
13년 전 조회 1,428
13년 전 조회 1,525
13년 전 조회 1,357
13년 전 조회 1,518
13년 전 조회 2,464
13년 전 조회 2,739
13년 전 조회 1,634
13년 전 조회 1,868
13년 전 조회 2,976
13년 전 조회 1,934
13년 전 조회 1,934
13년 전 조회 1,595
13년 전 조회 2,998
13년 전 조회 1,600
13년 전 조회 1,756
13년 전 조회 2,067
13년 전 조회 2,228
13년 전 조회 3,840
13년 전 조회 4,075