kenmaples
Member
I will try to test with the command with the original version after I finish getting this device built.
Last night I was able to compile the latest version of ffmpeg and it seems to be working currently, at least at the moment. This is a very lengthy process to make and install on a Pie2.
sudo apt-get install libx264-dev
sudo apt-get install libmp3lame-dev
sudo apt-get install libopencore-amrnb-dev libopencore-amrwb-dev -y
mkdir ~/Downloads/
cd ~/Downloads
wget https://ffmpeg.org/releases/ffmpeg-3.2.2.tar.bz2
cd ~/Downloads/ffmpeg
tar xvjf ffmpeg-3.2.2.tar.bz2
cd ~/Downloads/ffmpeg-3.2.2
./configure --prefix=/usr --enable-gpl --enable-libx264 --enable-nonfree --enable-shared --disable-static --enable-nonfree --enable-libmp3lame --enable-postproc --enable-swscale --enable-pthreads --enable-version3 --enable-libopencore-amrnb --enable-libopencore-amrwb
make
sudo make install
Thank you!
Last night I was able to compile the latest version of ffmpeg and it seems to be working currently, at least at the moment. This is a very lengthy process to make and install on a Pie2.
sudo apt-get install libx264-dev
sudo apt-get install libmp3lame-dev
sudo apt-get install libopencore-amrnb-dev libopencore-amrwb-dev -y
mkdir ~/Downloads/
cd ~/Downloads
wget https://ffmpeg.org/releases/ffmpeg-3.2.2.tar.bz2
cd ~/Downloads/ffmpeg
tar xvjf ffmpeg-3.2.2.tar.bz2
cd ~/Downloads/ffmpeg-3.2.2
./configure --prefix=/usr --enable-gpl --enable-libx264 --enable-nonfree --enable-shared --disable-static --enable-nonfree --enable-libmp3lame --enable-postproc --enable-swscale --enable-pthreads --enable-version3 --enable-libopencore-amrnb --enable-libopencore-amrwb
make
sudo make install
Thank you!