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 audio and video online. Audio and video downloads. > Playing online streaming in media players
Register FAQ Members List Calendar Mark Forums Read

Reply Post New Thread
 
Thread Tools Display Modes
  #1  
Old 08-23-2011, 08:14 AM
kwiecu kwiecu is offline
Member
 
Join Date: Aug 2011
Posts: 49
kwiecu is on a distinguished road
Default

ERROR: RTMP_ReadPacket, failed to read RTMP packet body


Hi,

I've beem using rtmpdump and VLC player to to watch live streams from
HTML Code:
http://weeb.tv/channels
After same changes at the website I can grab only 7 second of the stream then video stops.

my code:
Code:
call rtmpdump -v -r rtmp://46.105.112.31/live/13/live -W http://static.weeb.tv/player.swf -p http://weeb.tv/ | %vlc% -
I get this error:
Code:
The TVP1 stream is starting... Close vlc to return to the menu.
RTMPDump v2.4 GIT-2011-07-22 (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...
ERROR: rtmp server sent error
Starting Live Stream
INFO: Metadata:
INFO:   author
INFO:   copyright
INFO:   description
INFO:   keywords
INFO:   rating
INFO:   title
INFO:   presetname            Custom
INFO:   creationdate          Wed Aug 17 11:47:44 2011
INFO:   videodevice           Conexant Polaris Video Capture
INFO:   framerate             25.00
INFO:   width                 720.00
INFO:   height                576.00
INFO:   videocodecid          avc1
INFO:   videodatarate         436.00
INFO:   avclevel              40.00
INFO:   avcprofile            77.00
INFO:   videokeyframe_frequency2.00
INFO:   audiodevice           Conexant Polaris Audio Capture
INFO:   audiosamplerate       48000.00
INFO:   audiochannels         2.00
INFO:   audioinputvolume      75.00
INFO:   audiocodecid          mp4a
INFO:   audiodatarate         64.00
620.219 kB / 7.51 sec
ERROR: WriteN, RTMP send error 10053 (42 bytes)
ERROR: RTMP_ReadPacket, failed to read RTMP packet body. len: 4938
625.209 kB / 7.59 sec
Do you have any clue what I can do about that?

I presume that RTMPdump must be somehow patched, but I have no idea how to do that...

My system: Win Vista 32bit

Thanks in advance for any help!

Last edited by kwiecu : 08-23-2011 at 04:19 PM.
Reply With Quote
  #2  
Old 08-28-2011, 02:32 PM
wiosna wiosna is offline
Junior Member
 
Join Date: Aug 2011
Posts: 6
wiosna is on a distinguished road
Default

Re: weeb.tv - How to watch live with rtmpdump


Code:
-W http://weeb.tv/static/player.swf
???
Reply With Quote
  #3  
Old 08-31-2011, 08:00 AM
killerman killerman is offline
Member
 
Join Date: May 2011
Posts: 48
killerman is on a distinguished road
Default

Re: weeb.tv - How to watch live with rtmpdump


still doesnt work, any other idea?

i have the same problem.
Reply With Quote
  #4  
Old 09-23-2011, 10:51 PM
manoflorida manoflorida is offline
Junior Member
 
Join Date: Sep 2011
Posts: 10
manoflorida is on a distinguished road
Default

weeb.tv - How to watch live with rtmpdump and VLC?


how can i make this work
Code:
rtmpdump -r rtmp://46.105.112.31/live/56/live -W http://static.weeb.tv/player.swf  -p http://weeb.tv/ | "C:\Program Files\VideoLAN\VLC\vlc.exe" -
work for me just 7 second
Reply With Quote
  #5  
Old 10-10-2011, 08:22 AM
pras pras is offline
Junior Member
 
Join Date: Oct 2011
Posts: 2
pras is on a distinguished road
Default

Re: weeb.tv - How to watch live with rtmpdump and VLC


Hi,

I'm also trying to using RTMPdump to view streams from weeb.tv in VLC. It seems to work for a little over 3 seconds and then the connection is closed.

I use the following command:

Code:
rtmpdump -v -r "rtmp://46.105.112.31/live/" -s "http://weeb.tv/static/player.swf" -y "live" -p "http://weeb.tv/online/vibooart/TVN24" -a "live/2" --swfsize 757672 --swfhash "71076e7752fe2a6a48ec891089e75fb68890a0b3361f6faa1ed6342cbeee529a" -o "tvn24.flv"
The error message is below.
Reply With Quote
  #6  
Old 10-19-2011, 11:17 AM
KSV KSV is offline
Senior Member
 
Join Date: Apr 2011
Posts: 853
KSV is on a distinguished road
Cool

WeebTV solution


Quote:
Originally Posted by kwiecu View Post
I presume that RTMPdump must be somehow patched, but I have no idea how to do that...
Code:
http://stream-recorder.com/forum/showpost.php?p=33590&postcount=7
Reply With Quote
  #7  
Old 10-26-2011, 06:53 AM
karlo2105 karlo2105 is offline
Senior Member
 
Join Date: Sep 2011
Posts: 318
karlo2105 is on a distinguished road
Default

Re: WeebTV solution


It is possible or not to stop saving command bat files in folder?
Reply With Quote
  #8  
Old 10-26-2011, 07:23 AM
KSV KSV is offline
Senior Member
 
Join Date: Apr 2011
Posts: 853
KSV is on a distinguished road
Cool

Re: weeb.tv - How to watch live with rtmpdump


it's necessary to create batch file to easily pipe the stream from rtmpdump to vlc. however you can modify the script to create single batch file instead of each one for different channel. replace

Code:
$BatchFile = fopen($filename . '.bat', 'w');
with

Code:
$BatchFile = fopen('WeebTV.bat', 'w');
Reply With Quote
  #9  
Old 10-26-2011, 07:32 AM
karlo2105 karlo2105 is offline
Senior Member
 
Join Date: Sep 2011
Posts: 318
karlo2105 is on a distinguished road
Default

Re: weeb.tv - How to watch live with rtmpdump


Quote:
Originally Posted by KSV View Post
it's necessary to create batch file to easily pipe the stream. however you can modify the script to create single batch file instead of each one for different channel. replace

Code:
$BatchFile = fopen($filename . '.bat', 'w');
with

Code:
$BatchFile = fopen('WeebTV.bat', 'w');
I edited your script but what's weird it launches batchfile and than it closes. Below is what I get as error message

Quote:
# Netscape HTTP Cookie File
# http://curl.haxx.se/rfc/cookie_spec.html
# This file was generated by libcurl! Edit at your own risk.

weeb.tv FALSE / FALSE 0 PHPSESSID art42hk86s55thlj6dt3u1fbk6
www.weeb.tv FALSE / FALSE 0 PHPSESSID 3lc74oh6hff87a0gm3sqt6ol17
.weeb.tv TRUE / FALSE 1319718651 weeb-tv_ip 1299020726
Edit : I got it.

When I also changed this
Code:
$oExec    = $WshShell->Run("\"$filename.bat\"", 1, false);
to thisone
Code:
$oExec    = $WshShell->Run("\"WeebTV.bat\"", 1, false);
it worked.
Reply With Quote
  #10  
Old 10-26-2011, 07:55 AM
KSV KSV is offline
Senior Member
 
Join Date: Apr 2011
Posts: 853
KSV is on a distinguished road
Cool

Re: weeb.tv - How to watch live with rtmpdump


also change

Code:
$oExec    = $WshShell->Run("\"$filename.bat\"", 1, false);
to

Code:
$oExec    = $WshShell->Run("WeebTV.bat", 1, false);
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:21 AM.


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