View Single Post
  #31  
Old 03-21-2014, 05:52 AM
yetanotherday yetanotherday is offline
tinyurl.com/sleazy-script
 
Join Date: Jul 2012
Posts: 54
yetanotherday is on a distinguished road
Default

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


Quote:
Originally Posted by StreamRecorder View Post
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
you are my hero
Reply With Quote