View Single Post
  #137  
Old 07-18-2013, 10:34 AM
KSV KSV is offline
Senior Member
 
Join Date: Apr 2011
Posts: 853
KSV is on a distinguished road
Cool

Re: Customized rtmpdump binaries with patch file


Quote:
Originally Posted by gallina94 View Post
Hi, i was able to compile on UBUNTU 12.04 but as soon as i launche rtmpdump i get
Segmentation fault (core dumped)

any idea?
Your rtmpdump is loading the wrong version of librtmp.so. try with ldd rtmpdump to determine the correct location of librtmp being loaded by rtmpdump and replace it with newly compiled version.

by default make install command installs the binaries in /usr/local path. you can change it by supplying the prefix switch.
Code:
sudo make install prefix=/usr
you can also compile static binary to avoid dependency on librtmp.
Reply With Quote