View Single Post
  #30  
Old 09-29-2013, 03:28 AM
StreamRecorder StreamRecorder is offline
Super Moderator
 
Join Date: Oct 2011
Posts: 53
StreamRecorder is on a distinguished road
Default

Re: RTMPDump - how do I compile source code in Linux like Ubuntu?


How to compile rtmpdump with KSV patches in Ubuntu 13.04
Download rtmpdump from git://git.ffmpeg.org/rtmpdump
Code:
git clone git://git.ffmpeg.org/rtmpdump
Install dependencies
Code:
sudo apt-get install build-essential gcc make subversion libssl-dev
Download KSV patch from https://github.com/K-S-V/Scripts/releases/tag/v2.4. Extract the archive and put the Patch.diff file into the folder with rtmpdump sources. Apply the KSV patch:
Code:
patch -p0 -i Patch.diff
If rtmpdump is already installed via sudo apt-get install, then do the following:
Code:
rtmpdump installed
cd librtmp
make
sudo cp librtmp.so.0 /lib
cd ..
Compile and install rtmpdump
Code:
make SYS=posix
sudo make install
Reply With Quote