Skip to content

Instantly share code, notes, and snippets.

View Andy9822's full-sized avatar

Andy Ruiz Garramones Andy9822

View GitHub Profile
@Andy9822
Andy9822 / install-ffmpeg-openh264.sh
Created July 7, 2017 16:48
Install and compile FFMPEG 3.3.2 with all dependencies
#script based on fcecagno's script
#!/bin/bash
set -xe
sudo apt-get update && sudo apt-get install -y yasm nasm wget git-core build-essential checkinstall yasm texi2html libvorbis-dev libx11-dev libvpx-dev libxfixes-dev zlib1g-dev pkg-config libxext-dev libv4l-dev netcat librtmp-dev libx264-dev libmp3lame-dev libopus-dev libtheora-dev libwebp-dev libspeex-dev libfreetype6-dev
FFMPEG_VERSION=3.3.2
if [ ! -d "/usr/local/src/ffmpeg-${FFMPEG_VERSION}" ]; then