반응형
Raspberry PI FFMpeg 설치 방법.
1. 빌드 패키지 설치.
sudo apt install git build-essential
2. h.264 코덱 설치
git clone git://git.videolan.org/x264
cd x264
./configure --host=arm-unknown-linux-gnueabi --enable-static --disable-opencl
make
sudo make install
3. mp3lame 코덱 설치 (이 코덱을 설치 하는 이유는 ffmpeg 을 이용해서 영상을 mp3 로 인코딩 하고자 할때 사용하기 위함이다.)
sudo apt-get install libmp3lame-dev
4. FFMpeg 설치
git clone https://github.com/FFmpeg/FFmpeg.git
cd FFmpeg
./configure --arch=armel --target-os=linux --enable-gpl --enable-libx264 --enable-nonfree --enable-libmp3lame
make
sudo make install
참고 : https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu
'강좌 > RaspberryPI 활용' 카테고리의 다른 글
Synology NAS 에 발급 받은 인증서를 라즈베리파이 nginx 에 적용하기 (1) | 2020.06.01 |
---|---|
Raspbian 에 python 3.8 Selenium 및 chromedriver 설치 (0) | 2019.12.16 |
pi hole 암호 변경 (0) | 2019.03.14 |
Raspberry pi - Raspbian stretch python 3.7 설치 (0) | 2018.09.10 |
Raspberry pi 와 Arduino Pro Mini - RF 433 통신하기 (4) | 2017.02.03 |
Raspberry pi touch screen 깨우기 (0) | 2017.01.25 |
Raspberry pi - Python 3.5 설치 하기 (12) | 2016.10.11 |
Telegram CLI 시작 프로그램 등록하기 (18) | 2016.07.25 |