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

RTMPDumpHelper

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

Luminal 10-14-2017 12:44 PM

Re: RTMPDumpHelper


 
Quote:

Originally Posted by Damianonymous (Post 94577)
The latest version of rtmpdump is here: https://github.com/K-S-V/Scripts/releases Chrome 44.0.2403.157 is the latest version that supports NPAPI. You need to enable: chrome://flags/#enable-npapi ,install Adobe Flash Player (NPAPI) and run it in: chrome://plugins/ Proposes to use the Portable version, which can be installed next to the current version of Chrome: https://sourceforge.net/projects/por...me%20Portable/ Later, use F8 to add in the application, support new browser.

Can this be done with Firefox too? I did windows update yesterday and firefox updated too and now rtmpdump helper doesnt work with firefox anymore. Everything was normal yesterday before the update.

j_cool 10-14-2017 02:31 PM

Re: RTMPDumpHelper


 
Quote:

Originally Posted by Luminal (Post 94688)
Can this be done with Firefox too?

Latest Firefox version 32 bit that works well with Helper 32 bit is 51.

Luminal 10-14-2017 05:39 PM

Re: RTMPDumpHelper


 
Quote:

Originally Posted by j_cool (Post 94693)
Latest Firefox version 32 bit that works well with Helper 32 bit is 51.

I reverted back to Firefox 55 64bit and seems to be working fine now thanks.

Damianonymous 10-15-2017 03:18 AM

Re: RTMPDumpHelper


 
For a moment, NPAPI support should be available in the latest version of Firefox ESR:

https://www.mozilla.org/en-US/firefo...nizations/faq/

You can use the Portable version:

https://portableapps.com/apps/intern...x-portable-esr

confused.com 05-10-2018 06:19 AM

Re: RTMPDumpHelper


 
Quote:

Originally Posted by j_cool (Post 96205)
Here is an easy solution about how to get rtmp parameters in modern days. Works on bunch of other sites.

http://stream-recorder.com/forum/sho...5&postcount=35

http://www.nirsoft.net/utils/rtmp_dump_helper.html

https://addons.mozilla.org/en-US/fir...rc=userprofile

101001 11-07-2018 08:22 PM

Re: RTMPDumpHelper


 
Sorry to bump an old thread but rtmpdumphelper hasn't worked on Stream Mate in a while and I would like to know if there is a fix for this.

Damianonymous 11-08-2018 05:43 AM

Re: RTMPDumpHelper


 
"Version 1.22:
RTMPDumpHelper now temporary disables the DLL protection mechanism of Firefox in order to load RTMPDumpHelper.dll into Firefox. (Also, be aware that Firefox is now installed as 64-bit Web browser by default, so you have to use the 64-bit version of RTMPDumpHelper if you have 64-bit system.)"

Have you checked Firefox? I looked at Internet Explorer and I think it's okay.


korexaj 11-09-2018 09:00 AM

Re: RTMPDumpHelper


 
Quote:

Originally Posted by Damianonymous (Post 96618)
"Version 1.22:
RTMPDumpHelper now temporary disables the DLL protection mechanism of Firefox in order to load RTMPDumpHelper.dll into Firefox. (Also, be aware that Firefox is now installed as 64-bit Web browser by default, so you have to use the 64-bit version of RTMPDumpHelper if you have 64-bit system.)"

Have you checked Firefox? I looked at Internet Explorer and I think it's okay.


is there anything equivalent of RTMPDumpHelper for macOS or even Linux?

Damianonymous 11-10-2018 01:19 AM

Re: RTMPDumpHelper


 
I do not use Linux, I can not answer you.

j_cool 11-10-2018 01:52 AM

Re: RTMPDumpHelper


 
RTMPSRV and RTMPSUCK are for linux, no graphical user interface.

Learning rtmpdump Through Examples ( gone )
http://pclosmag.com/html/issues/201104/page19.html

Run as a root in terminal:
iptables -t nat -A OUTPUT -p tcp --dport 1935 -m owner \! --uid-owner root -j REDIRECT

Run as a root in terminal:
rtmpsuck

As an ordinary user, open in Firefox this address: http://rt.com/on-air/rt-america-air/
Switch to root's terminal. You should see something like the following:
app: live flashVer: LNX 10,1,82,76
swfUrl: http://rt.com/s/swf/player5.4.viral.swf
tcUrl: rtmp://rt.fms.visionip.tv/live
pageUrl: http://rt.com/on-air/rt-america-air/
Playpath: RT_US_3

Break the command after a while
(Ctrl+C).

Run the command in root terminal:
iptables -t nat -D OUTPUT -p tcp --dport 1935 -m owner \! --uid-owner root -j REDIRECT

Run the command in terminal as an ordinary user:
rtmpdump -r rtmp://rt.fms.visionip.tv/live \
-a live \
-y RT_US_3 \ -W http://rt.com/s/swf/player5.4.viral.swf \
-p http://rt.com/on-air/rt-america-air/ \
-f "LNX 10,1,82,76" \
-o ~/rt.flv \
-V \
-B 600

After 10 minutes, you will get the video file "rt.flv" in your home directory

korexaj 11-10-2018 07:28 AM

Re: RTMPDumpHelper


 
Quote:

Originally Posted by j_cool (Post 96621)
RTMPSRV and RTMPSUCK are for linux, no graphical user interface.

Learning rtmpdump Through Examples ( gone )
http://pclosmag.com/html/issues/201104/page19.html

Run as a root in terminal:
iptables -t nat -A OUTPUT -p tcp --dport 1935 -m owner \! --uid-owner root -j REDIRECT

Run as a root in terminal:
rtmpsuck

As an ordinary user, open in Firefox this address: http://rt.com/on-air/rt-america-air/
Switch to root's terminal. You should see something like the following:
app: live flashVer: LNX 10,1,82,76
swfUrl: http://rt.com/s/swf/player5.4.viral.swf
tcUrl: rtmp://rt.fms.visionip.tv/live
pageUrl: http://rt.com/on-air/rt-america-air/
Playpath: RT_US_3

Break the command after a while
(Ctrl+C).

Run the command in root terminal:
iptables -t nat -D OUTPUT -p tcp --dport 1935 -m owner \! --uid-owner root -j REDIRECT

Run the command in terminal as an ordinary user:
rtmpdump -r rtmp://rt.fms.visionip.tv/live \
-a live \
-y RT_US_3 \ -W http://rt.com/s/swf/player5.4.viral.swf \
-p http://rt.com/on-air/rt-america-air/ \
-f "LNX 10,1,82,76" \
-o ~/rt.flv \
-V \
-B 600

After 10 minutes, you will get the video file "rt.flv" in your home directory


Thanks for this.
Would you happen to know the command for macOS? i got rtmpsuck and rtmpsrv installed but the below command used to work before apparently but no longer works in newer macOS (dating back few years) since their changed iptables for something else which i can't remember.

Quote:

iptables -t nat -A OUTPUT -p tcp --dport 1935 -m owner \! --uid-owner root -j REDIRECT

j_cool 11-10-2018 10:46 AM

Re: RTMPDumpHelper


 
I never used mac.
I saw only peope using it at work. namely BBC.

bugrel 10-09-2024 08:18 PM

Find Beautiful Womans in your city for night - Authentic Damsels


 
Beautiful Girls in your town for night


All times are GMT -6. The time now is 03:20 PM.