Audio/video stream recording forums

Attention Visitor:
You may have to register or log in before you can post:
  • Click the register link to sign up.
  • Registered members please fill in the form below and click the "Log in" button.
To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Audio/video stream recording forums > Streaming media recording forum > rtmpdump
Register FAQ Members List Calendar Mark Forums Read

Reply Post New Thread
 
Thread Tools Display Modes
  #461  
Old 12-17-2018, 04:42 PM
supersonic80 supersonic80 is offline
Senior Member
 
Join Date: Mar 2016
Posts: 138
supersonic80 is on a distinguished road
Default

Re: Customized rtmpdump binaries with patch file


Quote:
Originally Posted by dniblick View Post
You deleted the file before I got a chance to try it.
Whoops, my fault. Was not aware of this.
Reply With Quote
  #462  
Old 12-18-2018, 04:55 PM
dniblick dniblick is offline
Junior Member
 
Join Date: Aug 2014
Posts: 3
dniblick is on a distinguished road
Default

Re: Customized rtmpdump binaries with patch file


Preliminary testing looks good. This seems to address whatever change occurred in the latest Wowza update, or perhaps just a configuration change that went with the push.
Reply With Quote
  #463  
Old 12-18-2018, 05:19 PM
rastafari90 rastafari90 is offline
Junior Member
 
Join Date: Oct 2017
Posts: 4
rastafari90 is on a distinguished road
Default

Re: Customized rtmpdump binaries with patch file


Quote:
Originally Posted by rantanplan View Post
I don't understand. It's GPL license...
It's not so much that it's under the GPL license or being/not being in a position to release the code. It's the fact that supersonic80 got the pacthed rtmpdump and librtmp.so.1 from the patch creator Sergey Stativa. If he'd patch it himself, he'd be able to tell you what he changed.
Reply With Quote
  #464  
Old 12-19-2018, 12:20 AM
confused.com confused.com is offline
Senior Member
 
Join Date: Jan 2017
Posts: 165
confused.com is on a distinguished road
Default

Re: Customized rtmpdump binaries with patch file


http://stream-recorder.com/forum/sho...9&postcount=30
Reply With Quote
  #465  
Old 12-19-2018, 03:36 AM
dniblick dniblick is offline
Junior Member
 
Join Date: Aug 2014
Posts: 3
dniblick is on a distinguished road
Default

Re: Customized rtmpdump binaries with patch file


Sergey's committed his latest code and it seems to work. On Ubuntu 18.04 there are still compile issues with OpenSSL 1.1.0 in the rtmpdump codebase that I simply resolved by using GnuTLS for now (I found a ported codebase and the patches applied fine, but it wasn't working so I left it alone).
Reply With Quote
  #466  
Old 12-19-2018, 07:26 AM
cabulo cabulo is offline
Senior Member
 
Join Date: Jan 2017
Posts: 102
cabulo is on a distinguished road
Default

Re: Customized rtmpdump binaries with patch file


https://github.com/sstativa/rtmpdump-ksv

This looks good.
It would be great if somebody who finds link to compiled package for windows to post a link here.
It would save trouble to all of us from compiling.

Last edited by cabulo : 12-19-2018 at 03:08 PM.
Reply With Quote
  #467  
Old 12-19-2018, 07:22 PM
supersonic80 supersonic80 is offline
Senior Member
 
Join Date: Mar 2016
Posts: 138
supersonic80 is on a distinguished road
Default

Re: Customized rtmpdump binaries with patch file


I have some instructions on how to compile this using MinGW, but it is too complicated. I'm not sure it will be useful for many.

Quote:
Originally Posted by cabulo View Post
https://github.com/sstativa/rtmpdump-ksv

This looks good.
It would be great if somebody who finds link to compiled package for windows to post a link here.
It would save trouble to all of us from compiling.
Reply With Quote
  #468  
Old 12-20-2018, 12:27 AM
j_cool j_cool is offline
Senior Member
 
Join Date: Feb 2016
Posts: 515
j_cool is on a distinguished road
Default

Re: Customized rtmpdump binaries with patch file


Quote:
Originally Posted by supersonic80 View Post
I have some instructions on how to compile
This looks good too.
If it works for you, it will be enough. You can post download link on https://www.datafilehost.com/
after you compile the package. KSV did it once before on github.
I compile my autoit scripts with two clicks of a mouse and don't get that Linus Torvalds makes nothing less than Linux
and then millions of other programers cannot simplify shit compiling work procedure.

HYC likes linux so much and despises of windows so much,
how about simplicity of compiling ffmpeg and rtmpdump for the start?
Try to compile ffmpeg and then post here how enjoyable time you had.
Reply With Quote
  #469  
Old 12-20-2018, 06:01 AM
supersonic80 supersonic80 is offline
Senior Member
 
Join Date: Mar 2016
Posts: 138
supersonic80 is on a distinguished road
Default

Re: Customized rtmpdump binaries with patch file


The next one is the instruction I have, I only made some changes to make it work:
1. I had to remove the line 40 of rtmpdump.c, otherwise it would not compile.
2. I added -static after -lz on line 14 of Makefile to make rtmpdump "self-sufficient".

Instruction:
# Suppose the current user is IEUser (replace by your username)

# Install MinGW
https://osdn.net/projects/mingw/down...get-setup.exe/

# Run and select to install
mingw-developer-toolkit-bin
mingw32-base-bin
mingw32-gcc-g++-bin
msys-base-bin

# Download and unpack
https://www.zlib.net/zlib1211.zip
https://www.openssl.org/source/openssl-1.0.2q.tar.gz
https://github.com/sstativa/rtmpdump...ive/master.zip

# Open cmd.exe and start
c:\MinGW\msys\1.0\msys.bat

# Next should be run in msys window

# Compile openssl
cd /c/Users/IEUser/Downloads/openssl-1.0.2q
./config
make

# Compile zlib
cd /c/Users/IEUser/Downloads/zlib-1.2.11
make -f win32/Makefile.gcc

# Compile rtmdump-ksv
cd /c/Users/IEUser/Downloads/rtmpdump-ksv-master

make SYS=mingw INC="-I/c/Users/IEUser/Downloads/openssl-1.0.2q/include -I/c/Users/IEUser/Downloads/zlib-1.2.11 -L/c/Users/IEUser/Downloads/openssl-1.0.2q -L/c/Users/IEUser/Downloads/zlib-1.2.11" LDFLAGS="-L/c/Users/IEUser/Downloads/openssl-1.0.2q -L/c/Users/IEUser/Downloads/zlib-1.2.11"
Reply With Quote
  #470  
Old 12-20-2018, 02:13 PM
Damianonymous Damianonymous is offline
Senior Member
 
Join Date: Jan 2017
Posts: 187
Damianonymous is on a distinguished road
Default

Re: Customized rtmpdump binaries with patch file


Quote:
Originally Posted by rastafari90 View Post
It's not so much that it's under the GPL license or being/not being in a position to release the code. It's the fact that supersonic80 got the pacthed rtmpdump and librtmp.so.1 from the patch creator Sergey Stativa. If he'd patch it himself, he'd be able to tell you what he changed.
This is one person.
Reply With Quote
Reply Post New Thread
Tags: , , , , , ,



Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -6. The time now is 06:05 AM.


Powered by All-streaming-media.com; 2006-2011
vB forum hacked with Zoints add-ons