Skip to content

Latest commit

 

History

History
21 lines (20 loc) · 980 Bytes

ffmpeg-commands.md

File metadata and controls

21 lines (20 loc) · 980 Bytes

Installing h264 & ffmpeg on Raspberry Pi 4 model B command list

Install h264

  • cd ~
  • git clone --depth 1 https://code.videolan.org/videolan/x264.git
  • 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 --depth=1
  • cd ffmpeg
  • ./configure --arch=armel --target-os=linux --enable-gpl --enable-libx264 --enable-nonfree
  • make -j4
  • sudo make install

All credit to JolleJolles. His version with description here.