Skip to content

Instantly share code, notes, and snippets.

@dudewheresmycode
Last active December 22, 2022 09:37
Show Gist options
  • Star 12 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save dudewheresmycode/154df74824aadef2b8c1b8a6bccb66c7 to your computer and use it in GitHub Desktop.
Save dudewheresmycode/154df74824aadef2b8c1b8a6bccb66c7 to your computer and use it in GitHub Desktop.

Install x264

cd ~
git clone git://git.videolan.org/x264
cd x264
./configure --host=arm-unknown-linux-gnueabi --enable-static --disable-opencl
make -j4
sudo make install

Install FFMPEG

cd ~
git clone git://source.ffmpeg.org/ffmpeg.git
cd ffmpeg
./configure --arch=armel --target-os=linux --enable-gpl --enable-libx264 --enable-nonfree
make -j4
sudo make install
@dudewheresmycode
Copy link
Author

For earlier (non quad core) pi versions use make instead of make -j4

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment