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

[sawlive.tv]INFO: Connected..ERROR:Closing connection: NetConnection.Connect.Rejected

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

zemiudo 11-21-2014 08:48 AM

[sawlive.tv]INFO: Connected..ERROR:Closing connection: NetConnection.Connect.Rejected


 
Code:

rtmpdump -r "rtmp://204.45.157.186/flash" -f "WIN 15,0,0,223" -W "http://static3.sawlive.tv/player.swf" -p "http://sawlive.tv/embed/watch/NhMTBmNjRmYzNmMGFiYmM4NTM0ZDUyNDE_/ZmljYW5vdm86Y2ZmYTE0MjA0YWFjZTkzMGFlNTI3ZGQyY2UzYTIwODA6MGFhMjhjN2" --live -y "19855?MTQxNjU4NDMwMzswZGIyMzc3YzE4MjgzNzkxOGI4N2Y0YTc2MzVhM2ZkNQ== " | "C:\Program Files (x86)\VideoLAN\VLC\vlc.exe" -
I wanna watch this stream playing on VLC Player

but when I run the .bat script I get this error on console:

INFO: Connected... ERROR: Closing connection: NetConnection.Connect.Rejected

anyone can help me ?


I'm sorry my english.

troller12 11-21-2014 09:32 AM

Re: [sawlive.tv]INFO: Connected..ERROR:Closing connection: NetConnection.Connect.Reje


 
They seems to use a dynamic playpath which you need to refresh.
Code:

-y "19855?MTQxNjU4NDMwMzswZGIyMzc3YzE4MjgzNzkxOGI4N2Y0YTc2MzVhM2ZkNQ=="
Get a new hash 19855?hash

Your pageurl dosen't work for me (no longer valid message I get in browser).Maybe channel is down or pageurl is wrong so next time just post the browser url where you can watch the channel into to prevent such problems.

greetz

zemiudo 11-21-2014 10:05 AM

Re: [sawlive.tv]INFO: Connected..ERROR:Closing connection: NetConnection.Connect.Reje


 
thank you for your answer.


source site of this stream:
Code:

http://cdn.zuuk.net/benficatv_2.php

troller12 11-21-2014 10:32 AM

Re: [sawlive.tv]INFO: Connected..ERROR:Closing connection: NetConnection.Connect.Reje


 
Hi,

ah ok now your link works. :) So as I thought already it used dynamic playpath.
Code:

-y "19855?MTQxNjU4NDMwMzswZGIyMzc3YzE4MjgzNzkxOGI4N2Y0YTc2MzVhM2ZkNQ=="
-y "19855?MTQxNjU4OTg4MTszM2YwNjNmMDM2MmE5MjdlMWJkZWJlZWY4MmI4MTMwYQ=="

Here you need to refresh the site to get the new hash you can use then for a while.If you are looking for a permanently solution to watch the channel then you could write maybe a php script or something else (if you can etc) what does request the playpath before execute the actually entire rtmp datas with your VLC player.On the other hand you need to get the actually hash manually (no good solution I know).

greetz

hasomaso 11-21-2014 10:33 AM

Re: [sawlive.tv]INFO: Connected..ERROR:Closing connection: NetConnection.Connect.Reje


 
Code:

rtmpdump -v -r "rtmp://50.7.28.130/flash" -a "flash" -f "WIN 15,0,0,223" -W "http://static3.sawlive.tv/player.swf" -p "http://sawlive.tv/embed/watch/JlYWJhN2Q0NmFmMzkxYmQzNTIzNzliOGM_/ZmljYW5vdm86Y2I4YWU2YjZhNGYzNmRlYTA0NDE4NjQ5YzJiYTE4YjU6NmY1N2UwZG" -y "19855?MTQxNjU5MDk2NDsyMDBmYmI0MzBmMDc0OGE4NWY5YTdjMTg0MmY3MWQ3Ng==" -o "output.flv"
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:  presetname              Custom
INFO:  creationdate            Thu Nov 20 03:42:38 2014
INFO:  videodevice            XSplitBroadcaster
INFO:  framerate              25.00
INFO:  width                  640.00
INFO:  height                  360.00
INFO:  videocodecid            avc1
INFO:  avclevel                30.00
INFO:  avcprofile              100.00
INFO:  videodatarate          390.62
INFO:  videokeyframe_frequency 0.12
INFO:  audiodevice            VHAudioCustom
INFO:  audiosamplerate        44100.00
INFO:  audiochannels          2.00
INFO:  audioinputvolume        100.00
INFO:  audiocodecid            .mp3
INFO:  audiodatarate          62.50
INFO:  bufferSize              600k
INFO:  maxBitrate              600k
INFO:  xsplitBroadcasterVersion1.3.0.85
INFO:  xsplitCoreVersion      1.2.1301.1501 Version 1.2
INFO:  xsplitGameSourceVersion 1.1.1.26
INFO:  xsplitMediaLibVersion  2.0.0.195
1101.237 kB / 43.83 sec


zemiudo 11-21-2014 11:10 AM

Re: [sawlive.tv]INFO: Connected..ERROR:Closing connection: NetConnection.Connect.Reje


 
Quote:

Originally Posted by troller12 (Post 72191)
Hi,

ah ok now your link works. :) So as I thought already it used dynamic playpath.
Code:

-y "19855?MTQxNjU4NDMwMzswZGIyMzc3YzE4MjgzNzkxOGI4N2Y0YTc2MzVhM2ZkNQ=="
-y "19855?MTQxNjU4OTg4MTszM2YwNjNmMDM2MmE5MjdlMWJkZWJlZWY4MmI4MTMwYQ=="

Here you need to refresh the site to get the new hash you can use then for a while.If you are looking for a permanently solution to watch the channel then you could write maybe a php script or something else (if you can etc) what does request the playpath before execute the actually entire rtmp datas with your VLC player.On the other hand you need to get the actually hash manually (no good solution I know).

greetz

thanks a lot troller,

do you have someone similar script for this ?

I didn't want to make wheel again...

greetz

passa1 11-22-2014 04:36 AM

Re: [sawlive.tv]INFO: Connected..ERROR:Closing connection: NetConnection.Connect.Reje


 
You can stream by cutting short a dynamic part.It is always worked for but obviously it is going to die.You need then to recapture a new link.

rtmp://158.85.70.79:1935/flash/19855?MTQxNjY1NTc0NTs2OTQ4MjhhNmEyOTY3ZDMyMDE0NjM4 MGQzMzYxMzdhMQ== swfUrl=http://static3.sawlive.tv/player.swf pageUrl=http://sawlive.tv

Working in SIMPLE PLAYER


All times are GMT -6. The time now is 11:38 PM.