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

Rtmp Help - King Of Queens???

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

lajvguy 11-25-2014 04:42 PM

Rtmp Help - King Of Queens???


 
Can someone help me to get this code to work in VLC? Worked for a few seconds then stopped. Any help would be appreciated!

http://vaughnlive.tv/lmshows_koq

rtmpdump -r "rtmp://50.7.78.138:443/live" -a "live?ulBkdYTpj5eSk8AZgMf8Y7IqWkC0IWxx" -f "WIN 15,0,0,223" -W

"http://vaughnlive.tv/4247932938/swf/VaughnSoftPlayer.swf" -p "http://vaughnlive.tv/lmshows_koq" --live -y

"live_lmshows_koq" | "C:\Program Files (x86)\VideoLAN\VLC\vlc.exe" -

troller12 11-26-2014 10:10 AM

Re: Rtmp Help - King Of Queens???


 
Hi,

how many threads do you wanna start with the same question!The problem why your stream does close after a few seconds is the app using also a new hash each time.
Code:

"live?Y0MmY96fQbr6Q7iOF1azCbr8qNX033D1"
"live?MwxS5yD6WNa6c7qkm2iiuqBzQuWUzANE"
"live?CpTfsQ2m4X8VFQ2D9CY6ve6G3W3ikEzB"
"live?i67po2pfu4Pcx4JuRS0dwdEcdDRLz6GW"

The hash seems to get unvalidated very quick = you need to much time to call your link into VLC.So if you are quick (almost realtime / not possible to do it by hand) then it will also run without to close...(see below)
Code:

RTMPDump v2.4 GIT-2014-07-07 (Compiled by KSV)
(c) 2010 Andrej Stepanchuk, Howard Chu, The Flvstreamer Team; license: GPL
WARNING: You haven't specified an output file (-o filename), using stdout
Connecting ...
INFO: Connected...
Starting Live Stream
INFO: Metadata:
INFO:  duration                0.00
INFO:  width                  640.00
INFO:  height                  360.00
INFO:  videodatarate          585.94
INFO:  framerate              29.97
INFO:  videocodecid            7.00
INFO:  audiodatarate          93.75
INFO:  audiosamplerate        44100.00
INFO:  audiosamplesize        16.00
INFO:  stereo                  TRUE
INFO:  audiocodecid            2.00
INFO:  encoder                Lavf55.22.102
INFO:  filesize                0.00
96350.345 kB / 1541.36 sec

greetz

lajvguy 11-26-2014 10:56 AM

Re: Rtmp Help - King Of Queens???


 
Thanks for the help. If it's not possible to do by hand then how did you do it? I'm trying to learn.

Quote:

Originally Posted by troller12 (Post 72318)
Hi,

how many threads do you wanna start with the same question!The problem why your stream does close after a few seconds is the app using also a new hash each time.
Code:

"live?Y0MmY96fQbr6Q7iOF1azCbr8qNX033D1"
"live?MwxS5yD6WNa6c7qkm2iiuqBzQuWUzANE"
"live?CpTfsQ2m4X8VFQ2D9CY6ve6G3W3ikEzB"
"live?i67po2pfu4Pcx4JuRS0dwdEcdDRLz6GW"

The hash seems to get unvalidated very quick = you need to much time to call your link into VLC.So if you are quick (almost realtime / not possible to do it by hand) then it will also run without to close...(see below)
Code:

RTMPDump v2.4 GIT-2014-07-07 (Compiled by KSV)
(c) 2010 Andrej Stepanchuk, Howard Chu, The Flvstreamer Team; license: GPL
WARNING: You haven't specified an output file (-o filename), using stdout
Connecting ...
INFO: Connected...
Starting Live Stream
INFO: Metadata:
INFO:  duration                0.00
INFO:  width                  640.00
INFO:  height                  360.00
INFO:  videodatarate          585.94
INFO:  framerate              29.97
INFO:  videocodecid            7.00
INFO:  audiodatarate          93.75
INFO:  audiosamplerate        44100.00
INFO:  audiosamplesize        16.00
INFO:  stereo                  TRUE
INFO:  audiocodecid            2.00
INFO:  encoder                Lavf55.22.102
INFO:  filesize                0.00
96350.345 kB / 1541.36 sec

greetz


troller12 11-26-2014 11:16 AM

Re: Rtmp Help - King Of Queens???


 
I use a custom tool what can read the rtmp data in realtime and there I can execute it also directly before stream is loaded in browser.

So you could try to use the rtmpsrv-vlc but this dosen't work for your site.On the other hand you can patch your rtmpsuck file to execute rtmpdump with actually obtained rtmpdatas (instead to write a output file) so this should work too.Maybe anyone here can compile a version for you what can do this so I just patch or write new codes pieces by myself in debugger (OllyDBG) only.

But a better solution would be if anyone writes a script for your site (similar as WeebTV script by KSV) to read the app hash.

greetz

nullacht 11-26-2014 12:05 PM

Re: Rtmp Help - King Of Queens???


 
Livestreamer supports Vaughnlive.TV:

Code:

http://livestreamer.readthedocs.org/en/latest/plugin_matrix.html
Code:

http://livestreamer.tanuki.se/en/latest/install.html
Code:

http://livestreamer-builds.s3.amazonaws.com/livestreamer-latest-win32.zip
Code:

livestreamer "http://vaughnlive.tv/lmshows_koq" best
Code:

[cli][info] Found matching plugin vaughnlive for URL http://vaughnlive.tv/lmshows_koq
[cli][info] Available streams: live (worst, best)
[cli][info] Opening stream: live (rtmp)


troller12 11-26-2014 01:21 PM

Re: Rtmp Help - King Of Queens???


 
Hey thanks for the info nullacht (aber net fünfzehn :) ) so I also didn't check LS plugins. :) Yes it works very well now.

Just one little info for lajvguy: So you also should maybe use the MPC-HC player with this stream to prevent lagging to watch it in VLC if you want to watch it liquid and if you have problems with VLC.For me it lags in VLC and broswer too.

greetz

lajvguy 11-26-2014 02:00 PM

Re: Rtmp Help - King Of Queens???


 
Thanks for the help. When I pasted, "livestreamer "http://vaughnlive.tv/lmshows_koq" best" I got an error message. "Unable to validate response text: Minimum length is 3 but value is 2." What should I do?

Quote:

Originally Posted by nullacht (Post 72322)
Livestreamer supports Vaughnlive.TV:

Code:

http://livestreamer.readthedocs.org/en/latest/plugin_matrix.html
Code:

http://livestreamer.tanuki.se/en/latest/install.html
Code:

http://livestreamer-builds.s3.amazonaws.com/livestreamer-latest-win32.zip
Code:

livestreamer "http://vaughnlive.tv/lmshows_koq" best
Code:

[cli][info] Found matching plugin vaughnlive for URL http://vaughnlive.tv/lmshows_koq
[cli][info] Available streams: live (worst, best)
[cli][info] Opening stream: live (rtmp)



lajvguy 11-26-2014 02:08 PM

Re: Rtmp Help - King Of Queens???


 
Thanks but I don't understand how to do that right now. I need more help.

Quote:

Originally Posted by troller12 (Post 72321)
I use a custom tool what can read the rtmp data in realtime and there I can execute it also directly before stream is loaded in browser.

So you could try to use the rtmpsrv-vlc but this dosen't work for your site.On the other hand you can patch your rtmpsuck file to execute rtmpdump with actually obtained rtmpdatas (instead to write a output file) so this should work too.Maybe anyone here can compile a version for you what can do this so I just patch or write new codes pieces by myself in debugger (OllyDBG) only.

But a better solution would be if anyone writes a script for your site (similar as WeebTV script by KSV) to read the app hash.

greetz


lajvguy 11-26-2014 02:10 PM

Re: Rtmp Help - King Of Queens???


 
Where can I get the MPC-HC player? I want to try it.

Quote:

Originally Posted by troller12 (Post 72324)
Hey thanks for the info nullacht (aber net fünfzehn :) ) so I also didn't check LS plugins. :) Yes it works very well now.

Just one little info for lajvguy: So you also should maybe use the MPC-HC player with this stream to prevent lagging to watch it in VLC if you want to watch it liquid and if you have problems with VLC.For me it lags in VLC and broswer too.

greetz


nullacht 11-26-2014 02:14 PM

Re: Rtmp Help - King Of Queens???


 
Quote:

Originally Posted by lajvguy (Post 72325)
Thanks for the help. When I pasted, "livestreamer "http://vaughnlive.tv/lmshows_koq" best" I got an error message. "Unable to validate response text: Minimum length is 3 but value is 2." What should I do?

You are using an outdated version.

Code:

http://livestreamer-builds.s3.amazonaws.com/livestreamer-latest-win32.zip

lajvguy 11-26-2014 06:07 PM

Re: Rtmp Help - King Of Queens???


 
I installed the latest version, 1.10.2, and I still get the same error message. "Unable to validate response text: Minimum length is 3 but value is 2." What should I do? Thanks.

Quote:

Originally Posted by nullacht (Post 72328)
You are using an outdated version.

Code:

http://livestreamer-builds.s3.amazonaws.com/livestreamer-latest-win32.zip


troller12 11-26-2014 06:40 PM

Re: Rtmp Help - King Of Queens???


 
Hi again,

nullacht has already post the direct download link of the zip file and the version is livestreamer-v1.10.2-43 so did you download it from the link?So this works and the pre version does also not work for me and there I get same error info like you.

Here the player.
Code:

http://mpc-hc.org/archive/
greetz

lajvguy 11-26-2014 06:57 PM

Re: Rtmp Help - King Of Queens???


 
Hi, I honestly don't know how to download livestreamer-v1.10.2-43 from nullacht's link so I downloaded this version from https://github.com/chrippa/livestreamer/releases/

https://github.com/chrippa/livestrea...in32-setup.exe

Is it the same version? Thanks.



Quote:

Originally Posted by troller12 (Post 72331)
Hi again,

nullacht has already post the direct download link of the zip file and the version is livestreamer-v1.10.2-43 so did you download it from the link?So this works and the pre version does also not work for me and there I get same error info like you.

Here the player.
Code:

http://mpc-hc.org/archive/
greetz


troller12 11-27-2014 01:49 PM

Re: Rtmp Help - King Of Queens???


 
Hi,

so you just need a new plugin files (vaughnlive.py / vaughnlive.pyc) then it will also work.

What do you mean you can't download from the file postet by nullacht?Just click on it then you get the window to download it.
Code:

http://livestreamer-builds.s3.amazonaws.com/livestreamer-latest-win32.zip
PS:The channel is down at the moment so don't wonder why it dosen't work now (no data returned). :)

greetz

lajvguy 11-27-2014 02:20 PM

Re: Rtmp Help - King Of Queens???


 
Hi, where do I get the new plugin files from? The new version of livestreamer?

I downloaded the file posted by nullacht to C:\Users\new2012\Downloads\Compressed folder. Where do I download it to set up the new version of livestreamer?

Quote:

Originally Posted by troller12 (Post 72340)
Hi,

so you just need a new plugin files (vaughnlive.py / vaughnlive.pyc) then it will also work.

What do you mean you can't download from the file postet by nullacht?Just click on it then you get the window to download it.
Code:

http://livestreamer-builds.s3.amazonaws.com/livestreamer-latest-win32.zip
PS:The channel is down at the moment so don't wonder why it dosen't work now (no data returned). :)

greetz


troller12 11-27-2014 04:58 PM

Re: Rtmp Help - King Of Queens???


 
What setup?Its just a zip package livestreamer-latest-win32.zip and now just unrar this package anywhere = folder name livestreamer-v1.10.2-43-gdf62756 and inside you have all files so there is not setup needed.Go into this folder put your rtmpdump.exe and CMD.exe into and then start the CMD and enter the link data.Thats all.

All new files are in this package already...
Code:

\livestreamer-v1.10.2-43-gdf62756\livestreamer-1.10.2-py2.7.egg\livestreamer\plugins
...into this you find the files.

greetz

lajvguy 11-28-2014 12:26 AM

Re: Rtmp Help - King Of Queens???


 
Thanks for the help. I extracted the files from the livestreamer zip package and put my rtmpdump.exe in the same folder.

I created a desktop shortcut using a batch file:

@echo
cd c:\program files (x86)\livestreamer-v1.10.2-43-gdf62756
livestreamer.exe streamlive.to/view/68886/24x7_WWE_NETWORK_LIVE_STREAM-live-stream-channel best
@echo off

It's working good. Thanks for teaching me what to do with the zip file!!! I think the King of Queens vaughnlive is down so the livestreamer won't work right now.

Quote:

Originally Posted by troller12 (Post 72354)
What setup?Its just a zip package livestreamer-latest-win32.zip and now just unrar this package anywhere = folder name livestreamer-v1.10.2-43-gdf62756 and inside you have all files so there is not setup needed.Go into this folder put your rtmpdump.exe and CMD.exe into and then start the CMD and enter the link data.Thats all.

All new files are in this package already...
Code:

\livestreamer-v1.10.2-43-gdf62756\livestreamer-1.10.2-py2.7.egg\livestreamer\plugins
...into this you find the files.

greetz



All times are GMT -6. The time now is 07:41 AM.