View Single Post
  #4  
Old 05-29-2014, 10:18 AM
gajm gajm is offline
Junior Member
 
Join Date: May 2014
Posts: 6
gajm is on a distinguished road
Default

Re: How to rtmpdump streamify.tv stream?


Quote:
Originally Posted by summitsc View Post
I am using Ubuntu 14.04 and getting this error.

Code:
rtmpdump: error while loading shared libraries: librtmp.so.1: cannot open shared object file: No such file or directory
Please send me DIRECT LINK to that rtmpdump. Thanks.
Something went wrong installing the new version of rtmpdump. The soname changed recently from so.0 to so.1. You're probably still pointing to the old one...

Try to check the shared objects with this command:
Code:
ldd `which rtmpdump`
Eventually, to try out the compiled binaries, without installing, you can use something like this:
Code:
LD_PRELOAD=/path-to-KSV-rtmpdump/librtmp.so.1 path-to-KSV-rtmpdump/rtmpdump <rtmpdump_parameters>
Cheers
Reply With Quote