Quote:
Originally Posted by summitsc
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