Audio/video stream recording forums (http://stream-recorder.com/forum/index.php)
-   rtmpdump (http://stream-recorder.com/forum/forumdisplay.php?f=54)
-   -  

Customized rtmpdump binaries with patch file

(http://stream-recorder.com/forum/showthread.php?t=16103)

KSV 12-05-2015 11:20 AM

Re: Customized rtmpdump binaries with patch file


 
Quote:

Originally Posted by ragex (Post 81437)
Don't really understand why it's asking for it. Never had that problem with the earlier version of KSV rtmpdump I used.

Actually it's not a problem with your command line or my patch. it's an old bug of mingw which I used to compile the binaries. this bug shows up when drive letter is mounted but drive content isn't readable. I have switched to mingw-w64 sometime ago but haven't released any binary update after that. I can post new binaries if you really want it.

ragex 12-09-2015 07:33 AM

Re: Customized rtmpdump binaries with patch file


 
Quote:

Originally Posted by KSV (Post 81440)
Actually it's not a problem with your command line or my patch. it's an old bug of mingw which I used to compile the binaries. this bug shows up when drive letter is mounted but drive content isn't readable. I have switched to mingw-w64 sometime ago but haven't released any binary update after that. I can post new binaries if you really want it.

Thank you for the reply. Would be awesome if you could post a new binarie. No rush, Take it when you get some time. Thank you very much KSV. :)

KSV 12-11-2015 08:22 AM

Re: Customized rtmpdump binaries with patch file


 
I have updated the first post with new binaries.

ragex 12-12-2015 06:21 AM

Re: Customized rtmpdump binaries with patch file


 
Quote:

Originally Posted by KSV (Post 81561)
I have updated the first post with new binaries.

Yay!! Tested and it works flawless. Thank you so very much KSV. :D

hasomaso 12-12-2015 01:38 PM

Re: Customized rtmpdump binaries with patch file


 
@KSV

a very important man here in the forum thanks KSV

iamsumit 12-15-2015 04:25 AM

Re: Customized rtmpdump binaries with patch file


 
KSV - i am using the latest version downloaded from http://rtmpdump.mplayerhq.hu/. That version in Mac compatible. Is your this v2.4 on top of that release? Or do i need to completely switch over from that release to yours?

Also, can somebody, with all the compile tools already in place, compile the latest version for Mac OS?
Thanks!

xanadu6291 12-15-2015 04:47 AM

Re: Customized rtmpdump binaries with patch file


 
I think KSV-san works great on rtmpdump customization.

By the way, I pulled git just before based on announce of mailing list "[rtmpdump] branch master updated. 3a69b31 update copyright year"

I have tried to apply KSV-san's latest patch, but rejected in 2 files.

They are "rtmpsrv.c.rej" and "amf.c.rej"


Should I wait for KSV-san's patch update?

KSV 12-15-2015 09:12 AM

Re: Customized rtmpdump binaries with patch file


 
I always use the latest rtmpdump sources at the time of release to create my patch. for the recent commits there were some code conflicts with the modifications i already had in place. I have resolved them and released new patch. if you notice any regression due to these changes then let me know.

iamsumit 12-15-2015 09:15 AM

Re: Customized rtmpdump binaries with patch file


 
Quote:

Originally Posted by KSV (Post 81701)
I always use the latest rtmpdump sources at the time of release to create my patch. for the recent commits there were some code conflicts with the modifications i already had in place. I have resolved them and released new patch. if you notice any regression due to these changes then let me know.

Brilliant work KSV!
You are brilliant!
Any chance that you would be compiling for Mac in near future or can point me to the steps to do so? Thanks.

xanadu6291 12-15-2015 06:13 PM

Re: Customized rtmpdump binaries with patch file


 
Quote:

Originally Posted by KSV (Post 81701)
I always use the latest rtmpdump sources at the time of release to create my patch. for the recent commits there were some code conflicts with the modifications i already had in place. I have resolved them and released new patch. if you notice any regression due to these changes then let me know.

KSV-san, Thank you very much for your quick action.

iamsumit 12-17-2015 11:19 PM

Re: Customized rtmpdump binaries with patch file


 
KSV - any help on what are rtmpgw and rtmpsrv-vlc used for and how to make use of them? There are some info available online but they are very vague so wanted more clarity.

Can rtmpgw be used for sniffing http streams on port 8080/8081? Thanks.

TEOL 12-23-2015 07:36 AM

Re: Customized rtmpdump binaries with patch file


 
Sweet. In these fixes has the fix to get the better quality feeds from ITV ect. and possible other UK On Demands been added out of interest it's better for the software to snag good quality than bad?

TEOL 12-26-2015 04:55 AM

Re: Customized rtmpdump binaries with patch file


 
There is a minor bug issue with the latest version where it only works on the C Drive and not my external anymore hope it could be fixed but so far so good on the working drive.

ZeChico 01-09-2016 05:56 AM

Re: Customized rtmpdump binaries with patch file


 
Thanks a lot KSV and anonymous, since I'm using the latest patch the patched RTMP package as not crashed a single time with RTMPDumpHelper (mostly using it in CB and MFC).

Awesome job ;)

mleczan 01-24-2016 03:28 PM

Re: Customized rtmpdump binaries with patch file


 
Hi! Is it also possible to enhance your patched rtmpdump with support for resuming live streams? Currently there is no way and --resume is disabled when --live. Of course tehere is no way to seek in live stream therefore some data would be lost which is obvious but any reasuming (just appending new data to old file) would be great. Is it possible?

ZeChico 01-25-2016 09:13 AM

Re: Customized rtmpdump binaries with patch file


 
Quote:

Originally Posted by mleczan (Post 82362)
Hi! Is it also possible to enhance your patched rtmpdump with support for resuming live streams? Currently there is no way and --resume is disabled when --live. Of course tehere is no way to seek in live stream therefore some data would be lost which is obvious but any reasuming (just appending new data to old file) would be great. Is it possible?

You can always use ffmpeg with concat to join files.

I use this bat file to join various flv from the present folder and convert to mp4 (only audio to reencode), just make sure that the files are ordered by name:

Code:

@ECHO OFF
setlocal enableextensions enabledelayedexpansion
set /a "count=0"
set "file="
echo(>"_input.txt"

for %%a in (*.flv) do (
    (set /a "count+=1")
    (if !count! == 1 (set file=%%a))
    (echo file '%%~a'>>"_input.txt")
)

set file=%file:~0,-3%mp4
ffmpeg -f concat -i _input.txt -strict experimental -c:v copy -c:a libvo_aacenc -ab 16k -ar 16000 -ac 1 "%file%"

pause


mleczan 01-25-2016 12:19 PM

Re: Customized rtmpdump binaries with patch file


 
@ZeChico thank you for replay but unfortunately it won't fit my needs. I use rtmpdump to record live stream and use it like PVR in XBMC, in case or merging file I'd need to record whole at first, then merge and play - using only rtmpdump I can watch content with a delay of 10 secs. Resuming seems to be the only one problem and eventually I'll probably try to implement this in rtmpdump but wonder if change could be done in release version so everyone can benefit from it.

mleczan 01-29-2016 11:36 AM

Re: Customized rtmpdump binaries with patch file


 
Hello @KSV, I've made a patch which allow resuming live stream: https://drive.google.com/file/d/0B0d...ew?usp=sharing

New behaviour instead of ignoring --resume flag when --live is used just force to continue stream record, legacy is untouched. I'm not sure if this is a proper solution but anyway proved to be working fine.
Any chance to include this patch in your release so it won't get lost over time? (Help message was not updated)

andreibv 02-15-2016 02:41 PM

Re: Customized rtmpdump binaries with patch file


 
I'm trying to save the stream from the following url: http://www.rcs-rds.ro/internet-digi-...predeal-centru
I've tried with RTMPDumpHelper but I get the following errors:

ERROR: RTMP_Connect0, failed to connect socket. 10060 (Unknown error)
ERROR: RTMP_ReadPacket, failed to read RTMP packet header

Any tips? What am I doing wrong?

biezom 02-15-2016 04:49 PM

Re: Customized rtmpdump binaries with patch file


 
Quote:

Originally Posted by andreibv (Post 82625)
I'm trying to save the stream from the following url: http://www.rcs-rds.ro/internet-digi-...predeal-centru
I've tried with RTMPDumpHelper but I get the following errors:

ERROR: RTMP_Connect0, failed to connect socket. 10060 (Unknown error)
ERROR: RTMP_ReadPacket, failed to read RTMP packet header

Any tips? What am I doing wrong?

hi
with this version of rtmpdump

Code:

https://github.com/K-S-V/Scripts/releases/download/v2.4/rtmpdump-2.4.zip
Code:

rtmpdump -r "rtmp://82.76.249.73:80/digilivedge" -a "digilivedge" -f "LNX 19,0,0,207" -W "http://www.rcs-rds.ro/cams_utilities/jwplayer/player-licensed53.swf" -p "http://www.rcs-rds.ro/internet-digi-net/camere-web-streaming/predeal-centru" --live -y "predeal_centru_desktop"  -o Predeal-Centru.flv

TEOL 02-24-2016 06:52 AM

Re: Customized rtmpdump binaries with patch file


 
Quote:

Originally Posted by andreibv (Post 82625)
I'm trying to save the stream from the following url: http://www.rcs-rds.ro/internet-digi-...predeal-centru
I've tried with RTMPDumpHelper but I get the following errors:

ERROR: RTMP_Connect0, failed to connect socket. 10060 (Unknown error)
ERROR: RTMP_ReadPacket, failed to read RTMP packet header

Any tips? What am I doing wrong?

This is what happens when you run the latest version anywhere else but the desktop thats why I asked for a new bug fix rather than a code as a new version should work as a previous version or it means it's riddled with bugs.

For the moment I am running it off of the desktop as a solution to this.

ChapelOfGhouls 02-29-2016 05:49 AM

Re: Customized rtmpdump binaries with patch file


 
Quote:

Originally Posted by mleczan (Post 82434)
Hello @KSV, I've made a patch which allow resuming live stream: https://drive.google.com/file/d/0B0d...ew?usp=sharing

New behaviour instead of ignoring --resume flag when --live is used just force to continue stream record, legacy is untouched. I'm not sure if this is a proper solution but anyway proved to be working fine.
Any chance to include this patch in your release so it won't get lost over time? (Help message was not updated)

How do I apply this patch?

Xidus 03-03-2016 07:54 PM

Re: Customized rtmpdump binaries with patch file


 
Is there a way to change the timestamp to 24 hour format? It is currently in 12 hour format without AM/PM indicator.

mleczan 03-07-2016 04:53 AM

Re: Customized rtmpdump binaries with patch file


 
Quote:

Originally Posted by ChapelOfGhouls (Post 82874)
How do I apply this patch?

You should be able to apply it by patch -p0 -i rtmpdump.c.patch - file should be located in same dir as rtmpdump.c

ChapelOfGhouls 03-14-2016 08:55 AM

Re: Customized rtmpdump binaries with patch file


 
Quote:

Originally Posted by mleczan (Post 83007)
You should be able to apply it by patch -p0 -i rtmpdump.c.patch - file should be located in same dir as rtmpdump.c

I can't, I don't think I have the tools for it. Can someone else do it and post it here?

ChapelOfGhouls 03-18-2016 03:14 PM

Re: Customized rtmpdump binaries with patch file


 
Is there a 64-bit version?

AlvoErrado2 04-02-2016 03:44 PM

Re: Customized rtmpdump binaries with patch file


 
I'm trying to save the stream from the following url:

Code:

http://player.stv.tv/episode/31rt/dumb-bunnies/smile-trail/
The download started, the file was created and everything seemed to work fine. But the download stop, and resume command has no effect.

AlvoErrado2 04-04-2016 09:15 PM

Re: Customized rtmpdump binaries with patch file


 
Problem solved using livestreamer.:cool:

xanadu6291 04-18-2016 07:24 PM

Re: Customized rtmpdump binaries with patch file


 
Hello, K-S-V san,

I have one issue with your patch.
In fact, it is also a issue of liborc. liborc is used in dirac schroedinger.

If I apply your patch with git repository of rtmpdump, and build it as static library, it occurs ffmpeg build error. Like following:

LD ffmpeg_g
LD ffplay_g
LD ffprobe_g
duplicate symbol _strsplit in:
/Volumes/ffmpeg_compile/lib/librtmp.a(rtmp.o)
/Volumes/ffmpeg_compile/lib/liborc-0.4.a(liborc_0.4_la-orcutils.o)
duplicate symbol _strsplit in:
/Volumes/ffmpeg_compile/lib/librtmp.a(rtmp.o)
/Volumes/ffmpeg_compile/lib/liborc-0.4.a(liborc_0.4_la-orcutils.o)
ld: 1 duplicate symbol for architecture x86_64
duplicate symbol _strsplit in:
/Volumes/ffmpeg_compile/lib/librtmp.a(rtmp.o)
/Volumes/ffmpeg_compile/lib/liborc-0.4.a(liborc_0.4_la-orcutils.o)

I searched your patch and found string "strsplit" (function name?)

I also tried to build ffmpeg with --enable-libschroedinger --enable-librtmp option, but never applied your patch, then above error does not occurred.

So from here it's a kind of trade. Do you mind changing name of "strsplit" to some other?

Or should I build rtmpdump without your patch? i.e. in the view of using rtmpdump with ffmpeg, your patch is worth to apply or not?


Please consider...

rantanplan 05-26-2016 07:17 PM

Re: Customized rtmpdump binaries with patch file


 
Hello, K-S-V san,

I have a strange issue on Ubuntu: I compiled patched rtmpdump on a older 32bit system (14.04 LTS) and it works flawlessly. Then i compiled exactly the same code on a 64 bi 16.04 LTS.

With identical command lines I always get a
Code:

  Closing connection: NetStream.Play.Failed
error with the 64bit version.
On 32bit it works fine.

What could be the reason? It's not a secure connection, so SSL is not used....

Regards

RoDen 08-07-2016 03:48 AM

Re: Customized rtmpdump binaries with patch file


 
Hi, K-S-V,

Looks like rtmpsuck totally ignores "deleteStream" command on active streams. In one case (when a server sends new streams with new IDs) it leads to the same stream being simultaneously saved in a number of files (not a big deal if you have enough disk space). In another case it results in a total mess: file names with wrong timestamps, wrong video duration, videos being non-seekable or totally corrupt.

So, rtmpsuck should either check if the stream is already being saved, so it doesn't create a new file for a new connection. But it may result in a corrupt video. Or it should close existing connection and proceed with a new one. The latter woult lead to saving a stream on a poor connection in numerous files including empty ones (zero or 13 byte size). So it would also be great for rtmpsuck to automatically delete such empty files.

Also this:
Quote:

Originally Posted by Xidus (Post 82942)
Is there a way to change the timestamp to 24 hour format? It is currently in 12 hour format without AM/PM indicator.

- timestamp_len = strftime(&timestamp[0], sizeof (timestamp), "%Y-%m-%d_%I-%M-%S_", localtime(&current_time));
+ timestamp_len = strftime(&timestamp[0], sizeof (timestamp), "%Y-%m-%d_%H-%M-%S_", localtime(&current_time));

blogmexicano 08-25-2016 09:40 PM

Re: Customized rtmpdump binaries with patch file


 
hello guys, years ago i downloaded adobe hds downloader with a .bat file which i only have to paste the url provided by the firefox addon hds link. you know where i can find it?

i swear i searched before post.

AlvoErrado2 09-02-2016 12:06 PM

Re: Customized rtmpdump binaries with patch file


 
Quote:

Originally Posted by blogmexicano (Post 87197)
hello guys, years ago i downloaded adobe hds downloader with a .bat file which i only have to paste the url provided by the firefox addon hds link. you know where i can find it?

i swear i searched before post.

http://stream-recorder.com/forum/k-s...le-t19630.html

Ibucalmin 11-16-2016 06:45 PM

Re: Customized rtmpdump binaries with patch file


 
When I run make SYS=posix

make[1]: Entering directory '/home/martzy/Downloads/rtmpdump-ksv-ksv/librtmp'
gcc -Wall -DRTMPDUMP_VERSION=\"v2.4\" -DUSE_OPENSSL -O2 -fPIC -c -o rtmp.o rtmp.c
rtmp.c:129:12: error: static declaration of ‘strsplit’ follows non-static declaration
static int strsplit(char *src, int srclen, char delim, char ***params);
^
In file included from rtmp_sys.h:61:0,
from rtmp.c:33:
rtmp.h:391:7: note: previous declaration of ‘strsplit’ was here
int strsplit(char *src, int srclen, char delim, char ***params);
^
rtmp.c: In function ‘RTMP_ReadPacket’:
rtmp.c:4004:7: warning: variable ‘didAlloc’ set but not used [-Wunused-but-set-variable]
int didAlloc = FALSE;
^
<builtin>: recipe for target 'rtmp.o' failed
make[1]: *** [rtmp.o] Error 1
make[1]: Leaving directory '/home/martzy/Downloads/rtmpdump-ksv-ksv/librtmp'
Makefile:76: recipe for target 'librtmp/librtmp.a' failed
make: *** [librtmp/librtmp.a] Error 2

confused.com 03-15-2017 06:01 AM

Re: Customized rtmpdump binaries with patch file


 
https://github.com/streamlink/streamlink/issues/707

j_cool 05-02-2017 01:50 AM

Re: Customized rtmpdump binaries with patch file


 
Here is one interesting post from FFMPEG forum.

http://ffmpeg.gusari.org/viewtopic.php?f=13&t=3621

If there is anybody interested in improving RTMPDUMP,

--append switch may be one suggestion.

confused.com 05-23-2017 01:31 AM

Re: Customized rtmpdump binaries with patch file


 
https://www.debian.org/security/2017/dsa-3850

cabulo 08-07-2017 04:29 AM

Re: Customized rtmpdump binaries with patch file


 
Guys,

Is anybody on this forum able to deliver download of Rtmpdump dated "RTMPDump v2.4 GIT-2015-12-23" ?

I'm not the only one on the internet looking for that download.

https://github.com/streamlink/streamlink/issues/1148

johnthecracker 10-24-2017 09:57 AM

Re: Customized rtmpdump binaries with patch file


 
Zeranoe has removed his download links to rtmpdump for the reason known only to him.

https://ffmpeg.zeranoe.com/forum/viewtopic.php?t=1024


Here is one alternative very similar to Zeranoe's distro and with later updates.

Rtmpsuck from this distro may work where KSV's rtmpsuck crushes.



Courtesy of:

Vangelis66



rtmpdump-2.4-20151223-gfa8646d-GnuTLS_3.5.12-win32-static.27-May-2017.zip

http://www.datafilehost.com/d/11210ce4

j_cool 11-21-2017 12:56 PM

Re: Customized rtmpdump binaries with patch file


 
In reference to KSV's rtmpsuck crush, here it is,
in case somebody would be interested in fixing the patch.

Code:

root@j:/home/j/rtmpdump# rtmpsuck
RTMP Proxy Server v2.4 KSV-2015-12-14
(c) 2010 Andrej Stepanchuk, Howard Chu; license: GPL

Streaming on rtmp://0.0.0.0:1935
WARNING: Trying different position for client digest!
Processing connect
      app : Decryption/
  flashVer : LNX 27,0,0,187
    swfUrl : https://imlive.com/swf/genericguestapp1.swf
    tcUrl : rtmp://fly4.globalmailer.com/Decryption/
  pageUrl : https://imlive.com/flash_sdk/freevideochatguest.aspx?hostnick=sabrinagrey&roomid=10
ERROR: RTMP_ReadPacket, failed to read RTMP packet header
Closing connection... done!

WARNING: Trying different position for client digest!
Processing connect
      app : iml
  flashVer : LNX 27,0,0,187
    swfUrl : https://imlive.com/swf/genericguestapp1.swf
    tcUrl : rtmp://world.influxis.net/iml
  pageUrl : https://imlive.com/flash_sdk/freevideochatguest.aspx?hostnick=sabrinagrey&roomid=10
WARNING: Trying different position for client digest!
Processing connect
      app : coolVideo_v2/1179439
  flashVer : LNX 27,0,0,187
    swfUrl : https://imlive.com/swf/genericguestapp1.swf
    tcUrl : rtmp://fly4.globalmailer.com/coolVideo_v2/1179439
  pageUrl : https://imlive.com/flash_sdk/freevideochatguest.aspx?hostnick=sabrinagrey&roomid=10
*** Error in `rtmpsuck': malloc(): memory corruption: 0x00007f6054023070 ***
======= Backtrace: =========
/lib/x86_64-linux-gnu/libc.so.6(+0x7908b)[0x7f6065c0b08b]
/lib/x86_64-linux-gnu/libc.so.6(+0x84ace)[0x7f6065c16ace]
/lib/x86_64-linux-gnu/libc.so.6(__libc_malloc+0x54)[0x7f6065c18984]
/lib/x86_64-linux-gnu/libc.so.6(+0x6eeed)[0x7f6065c00eed]
/lib/x86_64-linux-gnu/libc.so.6(+0x1293a3)[0x7f6065cbb3a3]
/lib/x86_64-linux-gnu/libc.so.6(__res_maybe_init+0x14d)[0x7f6065cbd08d]
/lib/x86_64-linux-gnu/libc.so.6(__nss_hostname_digits_dots+0x36)[0x7f6065cbf166]
/lib/x86_64-linux-gnu/libc.so.6(gethostbyname+0x98)[0x7f6065cadc68]
/usr/local/lib/librtmp.so.1(+0x6cf0)[0x7f6065f5fcf0]
/usr/local/lib/librtmp.so.1(RTMP_Connect+0x8d)[0x7f6065f6660d]
rtmpsuck(+0x2ec4)[0x5628136fbec4]
rtmpsuck(+0x3ee8)[0x5628136fcee8]
/lib/x86_64-linux-gnu/libpthread.so.0(+0x76da)[0x7f60661816da]
/lib/x86_64-linux-gnu/libc.so.6(clone+0x5f)[0x7f6065c9ad7f]
======= Memory map: ========
5628136f9000-5628136ff000 r-xp 00000000 08:21 4333656 /usr/local/sbin/rtmpsuck
5628138fe000-5628138ff000 r--p 00005000 08:21 4333656 /usr/local/sbin/rtmpsuck
5628138ff000-562813900000 rw-p 00006000 08:21 4333656 /usr/local/sbin/rtmpsuck
562813ffe000-56281401f000 rw-p 00000000 00:00 0 [heap]
7f6048000000-7f6048021000 rw-p 00000000 00:00 0
7f6048021000-7f604c000000 ---p 00000000 00:00 0
7f6050000000-7f6050045000 rw-p 00000000 00:00 0
7f6050045000-7f6054000000 ---p 00000000 00:00 0
7f6054000000-7f6054026000 rw-p 00000000 00:00 0
7f6054026000-7f6058000000 ---p 00000000 00:00 0
7f6058000000-7f6058029000 rw-p 00000000 00:00 0
7f6058029000-7f605c000000 ---p 00000000 00:00 0
7f605df43000-7f605df59000 r-xp 00000000 08:21 5771846 /lib/x86_64-linux-gnu/libgcc_s.so.1
7f605df59000-7f605e158000 ---p 00016000 08:21 5771846 /lib/x86_64-linux-gnu/libgcc_s.so.1
7f605e158000-7f605e159000 r--p 00015000 08:21 5771846 /lib/x86_64-linux-gnu/libgcc_s.so.1
7f605e159000-7f605e15a000 rw-p 00016000 08:21 5771846 /lib/x86_64-linux-gnu/libgcc_s.so.1
7f605e15a000-7f605e15b000 ---p 00000000 00:00 0
7f605e15b000-7f605e95b000 rw-p 00000000 00:00 0
7f605e95b000-7f605e9cd000 r-xp 00000000 08:21 5771934 /lib/x86_64-linux-gnu/libpcre.so.3.13.3
7f605e9cd000-7f605ebcc000 ---p 00072000 08:21 5771934 /lib/x86_64-linux-gnu/libpcre.so.3.13.3
7f605ebcc000-7f605ebcd000 r--p 00071000 08:21 5771934 /lib/x86_64-linux-gnu/libpcre.so.3.13.3
7f605ebcd000-7f605ebce000 rw-p 00072000 08:21 5771934 /lib/x86_64-linux-gnu/libpcre.so.3.13.3
7f605ebce000-7f605ebd5000 r-xp 00000000 08:21 5784515 /lib/x86_64-linux-gnu/librt-2.24.so
7f605ebd5000-7f605edd4000 ---p 00007000 08:21 5784515 /lib/x86_64-linux-gnu/librt-2.24.so
7f605edd4000-7f605edd5000 r--p 00006000 08:21 5784515 /lib/x86_64-linux-gnu/librt-2.24.so
7f605edd5000-7f605edd6000 rw-p 00007000 08:21 5784515 /lib/x86_64-linux-gnu/librt-2.24.so
7f605edd6000-7f605edfb000 r-xp 00000000 08:21 5771961 /lib/x86_64-linux-gnu/libselinux.so.1
7f605edfb000-7f605effa000 ---p 00025000 08:21 5771961 /lib/x86_64-linux-gnu/libselinux.so.1
7f605effa000-7f605effb000 r--p 00024000 08:21 5771961 /lib/x86_64-linux-gnu/libselinux.so.1
7f605effb000-7f605effc000 rw-p 00025000 08:21 5771961 /lib/x86_64-linux-gnu/libselinux.so.1
7f605effc000-7f605effe000 rw-p 00000000 00:00 0
7f605effe000-7f605efff000 ---p 00000000 00:00 0
7f605efff000-7f605f7ff000 rw-p 00000000 00:00 0
7f605f7ff000-7f605f800000 ---p 00000000 00:00 0
7f605f800000-7f6060000000 rw-p 00000000 00:00 0
7f6060000000-7f6060021000 rw-p 00000000 00:00 0
7f6060021000-7f6064000000 ---p 00000000 00:00 0
7f60641a6000-7f60641a8000 r-xp 00000000 08:21 5771909 /lib/x86_64-linux-gnu/libnss_mdns4_minimal.so.2
7f60641a8000-7f60643a7000 ---p 00002000 08:21 5771909
7f60643a7000-7f60643a8000 r--p 00001000 08:21 5771909
7f60643a8000-7f60643a9000 rw-p 00002000 08:21 5771909 /lib/x86_64-linux-gnu/libnss_mdns4_minimal.so.2
7f60643a9000-7f60643b4000 r-xp 00000000 08:21 5784508 /lib/x86_64-linux-gnu/libnss_files-2.24.so
7f60643b4000-7f60645b3000 ---p 0000b000 08:21 5784508
7f60645b3000-7f60645b4000 r--p 0000a000 08:21 5784508
7f60645b4000-7f60645b5000 rw-p 0000b000 08:21 5784508 /lib/x86_64-linux-gnu/libnss_files-2.24.so
7f60645b5000-7f60645bb000 rw-p 00000000 00:00 0
7f60645bb000-7f60645bc000 ---p 00000000 00:00 0
7f60645bc000-7f6064dbc000 rw-p 00000000 00:00 0
7f6064dbc000-7f6064dbf000 r-xp 00000000 08:21 5784501 /lib/x86_64-linux-gnu/libdl-2.24.so
7f6064dbf000-7f6064fbe000 ---p 00003000 08:21 5784501 /lib/x86_64-linux-gnu/libdl-2.24.so
7f6064fbe000-7f6064fbf000 r--p 00002000 08:21 5784501 /lib/x86_64-linux-gnu/libdl-2.24.so
7f6064fbf000-7f6064fc0000 rw-p 00003000 08:21 5784501 /lib/x86_64-linux-gnu/libdl-2.24.so
7f6064fc0000-7f60650c8000 r-xp 00000000 08:21 5784502 /lib/x86_64-linux-gnu/libm-2.24.so
7f60650c8000-7f60652c7000 ---p 00108000 08:21 5784502 /lib/x86_64-linux-gnu/libm-2.24.so
7f60652c7000-7f60652c8000 r--p 00107000 08:21 5784502 /lib/x86_64-linux-gnu/libm-2.24.so
7f60652c8000-7f60652c9000 rw-p 00108000 08:21 5784502 /lib/x86_64-linux-gnu/libm-2.24.so
7f60652c9000-7f60652e4000 r-xp 00000000 08:21 5771989 /lib/x86_64-linux-gnu/libz.so.1.2.11
7f60652e4000-7f60654e3000 ---p 0001b000 08:21 5771989 /lib/x86_64-linux-gnu/libz.so.1.2.11
7f60654e3000-7f60654e4000 r--p 0001a000 08:21 5771989 /lib/x86_64-linux-gnu/libz.so.1.2.11
7f60654e4000-7f60654e5000 rw-p 0001b000 08:21 5771989 /lib/x86_64-linux-gnu/libz.so.1.2.11
7f60654e5000-7f60656fe000 r-xp 00000000 08:21 5784455 /lib/x86_64-linux-gnu/libcrypto.so.1.0.0
7f60656fe000-7f60658fe000 ---p 00219000 08:21 5784455 /lib/x86_64-linux-gnu/libcrypto.so.1.0.0
7f60658fe000-7f606591a000 r--p 00219000 08:21 5784455 /lib/x86_64-linux-gnu/libcrypto.so.1.0.0
7f606591a000-7f6065926000 rw-p 00235000 08:21 5784455 /lib/x86_64-linux-gnu/libcrypto.so.1.0.0
7f6065926000-7f6065929000 rw-p 00000000 00:00 0
7f6065929000-7f6065987000 r-xp 00000000 08:21 5784456 /lib/x86_64-linux-gnu/libssl.so.1.0.0
7f6065987000-7f6065b87000 ---p 0005e000 08:21 5784456 /lib/x86_64-linux-gnu/libssl.so.1.0.0
7f6065b87000-7f6065b8b000 r--p 0005e000 08:21 5784456 /lib/x86_64-linux-gnu/libssl.so.1.0.0
7f6065b8b000-7f6065b92000 rw-p 00062000 08:21 5784456 /lib/x86_64-linux-gnu/libssl.so.1.0.0
7f6065b92000-7f6065d50000 r-xp 00000000 08:21 5784498 /lib/x86_64-linux-gnu/libc-2.24.so
7f6065d50000-7f6065f4f000 ---p 001be000 08:21 5784498 /lib/x86_64-linux-gnu/libc-2.24.so
7f6065f4f000-7f6065f53000 r--p 001bd000 08:21 5784498 /lib/x86_64-linux-gnu/libc-2.24.so
7f6065f53000-7f6065f55000 rw-p 001c1000 08:21 5784498 /lib/x86_64-linux-gnu/libc-2.24.so
7f6065f55000-7f6065f59000 rw-p 00000000 00:00 0
7f6065f59000-7f6065f79000 r-xp 00000000 08:21 4197839 /usr/local/lib/librtmp.so.1
7f6065f79000-7f6066178000 ---p 00020000 08:21 4197839 /usr/local/lib/librtmp.so.1
7f6066178000-7f6066179000 r--p 0001f000 08:21 4197839 /usr/local/lib/librtmp.so.1
7f6066179000-7f606617a000 rw-p 00020000 08:21 4197839 /usr/local/lib/librtmp.so.1
7f606617a000-7f6066192000 r-xp 00000000 08:21 5784513 /lib/x86_64-linux-gnu/libpthread-2.24.so
7f6066192000-7f6066392000 ---p 00018000 08:21 5784513 /lib/x86_64-linux-gnu/libpthread-2.24.so
7f6066392000-7f6066393000 r--p 00018000 08:21 5784513 /lib/x86_64-linux-gnu/libpthread-2.24.so
7f6066393000-7f6066394000 rw-p 00019000 08:21 5784513 /lib/x86_64-linux-gnu/libpthread-2.24.so
7f6066394000-7f6066398000 rw-p 00000000 00:00 0
7f6066398000-7f60663be000 r-xp 00000000 08:21 5784494 /lib/x86_64-linux-gnu/ld-2.24.so
7f6066531000-7f6066572000 r-xp 00000000 08:21 5771970 /lib/x86_64-linux-gnu/libnss_resolve.so.2
7f6066572000-7f6066575000 r--p 00040000 08:21 5771970 /lib/x86_64-linux-gnu/libnss_resolve.so.2
7f6066575000-7f6066576000 rw-p 00043000 08:21 5771970 /lib/x86_64-linux-gnu/libnss_resolve.so.2
7f6066576000-7f6066577000 rw-p 00000000 00:00 0
7f6066598000-7f606659c000 rw-p 00000000 00:00 0
7f60665b9000-7f60665bd000 rw-p 00000000 00:00 0
7f60665bd000-7f60665be000 r--p 00025000 08:21 5784494 /lib/x86_64-linux-gnu/ld-2.24.so
7f60665be000-7f60665bf000 rw-p 00026000 08:21 5784494 /lib/x86_64-linux-gnu/ld-2.24.so
7f60665bf000-7f60665c0000 rw-p 00000000 00:00 0
7ffcf63f2000-7ffcf6413000 rw-p 00000000 00:00 0 [stack]
7ffcf64bb000-7ffcf64bd000 r--p 00000000 00:00 0 [vvar]
7ffcf64bd000-7ffcf64bf000 r-xp 00000000 00:00 0 [vdso]
ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall]
Aborted (core dumped)
root@j:/home/j/rtmpdump#



All times are GMT -6. The time now is 02:31 PM.