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
  #1  
Old 04-30-2012, 03:26 PM
jafar2049 jafar2049 is offline
Junior Member
 
Join Date: Apr 2012
Posts: 3
jafar2049 is on a distinguished road
Question

rtmpdump : Download may be incomplete


Hello,

I've already downloaded several videos by using rtmpdump command and I never had any problem. Since this morning, I try to download a music concert from the website : citedelamusique.tv
It's a HD video and I believe that the file is quite big. When I run the command in terminal during several minutes, everything works as usual but then I get the following message:
Code:
INFO:   sampletype            mp4a
INFO:   length                294429696.00
INFO:   timescale             48000.00
INFO: sampledescription:
INFO:   length                552056400.00
INFO:   timescale             90000.00
INFO: sampledescription:
99157.895 kB / 752.12 sec (12.2%)
ERROR: WriteN, RTMP send error 10054 (42 bytes)
ERROR: RTMP_ReadPacket, failed to read RTMP packet body. len: 73368
99158.115 kB / 752.12 sec (12.2%)
Download may be incomplete (downloaded about 12.20%), try resuming
So the message says that Download may be incomplete. After a bit googling I found that there is a --resume option that may tackle this problem. Yet the same thing happened several minutes later, besides it asked me to specify a value for --skip (I didn't know what to specify).

Does rtmpdump have any problem with very large streaming (the concert is about 1 h 40 min) or there is a problem in my command?
This is exactly how I run rtmpdump in order to download the specified video
Code:
rtmpdump -o Pleyel-20120420-Brahms-Sy-02And04.flv -y mp4:PLVI/PLVI000178200/PLVI000178201/PLVI000178201_00_HQ.mp4 -n dcfms35-202.streamedia.info --app VOD --resume
Any idea?

Thanks in advance,
Reply With Quote
  #2  
Old 04-30-2012, 05:09 PM
karlo2105 karlo2105 is offline
Senior Member
 
Join Date: Sep 2011
Posts: 318
karlo2105 is on a distinguished road
Default

Re: rtmpdump : Download may be incomplete


You need to add -W parameter which means SWF player and eventually -p for website address.
Reply With Quote
  #3  
Old 04-30-2012, 05:34 PM
chap chap is offline
Senior Member
 
Join Date: Feb 2011
Location: Ukraine
Posts: 1,165
chap is on a distinguished road
Default

Re: rtmpdump : Download may be incomplete


Code:
rtmpdump -o Pleyel-20120420-Brahms-Sy-02And04.flv -y mp4:PLVI/PLVI000178200/PLVI000178201/PLVI000178201_00_HQ.mp4 -r rtmp://dcfms35-202.streamedia.info -a VOD
Code:
>rtmpdump
-o Pleyel-20120420-Brahms-Sy-02And04.flv -y mp4:PLVI/PLVI000178200/PLVI000178201
/PLVI000178201_00_HQ.mp4 -r rtmp://dcfms35-202.streamedia.info -a VOD
RTMPDump v2.4 GIT-2012-03-08 (Compiled by KSV)
(c) 2010 Andrej Stepanchuk, Howard Chu, The Flvstreamer Team; license: GPL
WARNING: No application or playpath in URL!
Connecting ...
INFO: Connected...
Starting download at: 0.000 kB
INFO: Metadata:
INFO:   duration              6133.96
INFO:   moovPosition          40.00
INFO:   width                 720.00
INFO:   height                406.00
INFO:   videocodecid          avc1
INFO:   audiocodecid          mp4a
INFO:   avcprofile            77.00
INFO:   avclevel              30.00
INFO:   aacaot                2.00
INFO:   videoframerate        25.00
INFO:   audiosamplerate       48000.00
INFO:   audiochannels         2.00
INFO: trackinfo:
INFO:   length                15334900.00
INFO:   timescale             2500.00
INFO: sampledescription:
INFO:   sampletype            avc1
INFO:   length                15334900.00
INFO:   timescale             2500.00
INFO: sampledescription:
INFO:   length                294429696.00
INFO:   timescale             48000.00
INFO: sampledescription:
INFO:   sampletype            mp4a
INFO:   length                294429696.00
INFO:   timescale             48000.00
INFO: sampledescription:
INFO:   length                552056400.00
INFO:   timescale             90000.00
INFO: sampledescription:
115812.601 kB / 888.88 sec (14.4%)
Reply With Quote
  #4  
Old 05-01-2012, 03:48 AM
jafar2049 jafar2049 is offline
Junior Member
 
Join Date: Apr 2012
Posts: 3
jafar2049 is on a distinguished road
Default

Re: rtmpdump : Download may be incomplete


Thanks for your solutions, but unfortunately non of them solved the problem which persists.

Code:
ERROR: WriteN, RTMP send error 10054 (42 bytes)
ERROR: RTMP_ReadPacket, failed to read RTMP packet body. len: 66814
228866.534 kB / 1755.28 sec (28.6%)
Download may be incomplete (downloaded about 28.60%), try resuming
Reply With Quote
  #5  
Old 05-01-2012, 06:23 AM
chap chap is offline
Senior Member
 
Join Date: Feb 2011
Location: Ukraine
Posts: 1,165
chap is on a distinguished road
Default

Re: rtmpdump : Download may be incomplete


Quote:
Originally Posted by jafar2049 View Post
Thanks for your solutions, but unfortunately non of them solved the problem which persists.

Code:
ERROR: WriteN, RTMP send error 10054 (42 bytes)
ERROR: RTMP_ReadPacket, failed to read RTMP packet body. len: 66814
228866.534 kB / 1755.28 sec (28.6%)
Download may be incomplete (downloaded about 28.60%), try resuming
use parametr "-e"

Code:
rtmpdump -o Pleyel-20120420-Brahms-Sy-02And04.flv -y mp4:PLVI/PLVI000178200/PLVI000178201/PLVI000178201_00_HQ.mp4 -r rtmp://dcfms35-202.streamedia.info -a VOD -e
Reply With Quote
  #6  
Old 05-01-2012, 08:05 AM
jafar2049 jafar2049 is offline
Junior Member
 
Join Date: Apr 2012
Posts: 3
jafar2049 is on a distinguished road
Default

Re: rtmpdump : Download may be incomplete


Quote:
Originally Posted by chap View Post
use parametr "-e"

Code:
rtmpdump -o Pleyel-20120420-Brahms-Sy-02And04.flv -y mp4:PLVI/PLVI000178200/PLVI000178201/PLVI000178201_00_HQ.mp4 -r rtmp://dcfms35-202.streamedia.info -a VOD -e
-e and --resume are the same thing. I'd already included this option in my command.
Reply With Quote
  #7  
Old 05-01-2012, 09:44 AM
chap chap is offline
Senior Member
 
Join Date: Feb 2011
Location: Ukraine
Posts: 1,165
chap is on a distinguished road
Default

Re: rtmpdump : Download may be incomplete


Code:
>rtmpdump
-r "rtmp://dcfms35-202.streamedia.info/VOD/" -a "VOD/" -f "WIN 11,2,202,228" -W
"http://citedelamusique.tv/Player/lecteur_video.swf" -p "http://citedelamusique.
tv/Concert/0985774.html" -y "mp4:PLVI/PLVI000178200/PLVI000178201/PLVI000178201_
00_LQ.mp4" -o "PLVI000178201_00_LQ.mp4.flv"
RTMPDump v2.4 GIT-2012-03-08 (Compiled by KSV)
(c) 2010 Andrej Stepanchuk, Howard Chu, The Flvstreamer Team; license: GPL
Connecting ...
INFO: Connected...
Starting download at: 0.000 kB
INFO: Metadata:
INFO:   duration              6133.96
INFO:   moovPosition          40.00
INFO:   width                 512.00
INFO:   height                288.00
INFO:   videocodecid          avc1
INFO:   audiocodecid          mp4a
INFO:   avcprofile            77.00
INFO:   avclevel              21.00
INFO:   aacaot                2.00
INFO:   videoframerate        25.00
INFO:   audiosamplerate       48000.00
INFO:   audiochannels         2.00
INFO: trackinfo:
INFO:   length                15334900.00
INFO:   timescale             2500.00
INFO: sampledescription:
INFO:   sampletype            avc1
INFO:   length                15334900.00
INFO:   timescale             2500.00
INFO: sampledescription:
INFO:   length                294429696.00
INFO:   timescale             48000.00
INFO: sampledescription:
INFO:   sampletype            mp4a
INFO:   length                294429696.00
INFO:   timescale             48000.00
INFO: sampledescription:
INFO:   length                552056400.00
INFO:   timescale             90000.00
INFO: sampledescription:
375334.983 kB / 5091.36 sec (83.0%)
ERROR: WriteN, RTMP send error 10054 (42 bytes)
ERROR: RTMP_ReadPacket, failed to read RTMP packet body. len: 4128
375451.966 kB / 5092.95 sec (83.0%)
Download may be incomplete (downloaded about 83.00%), try resuming

Code:
>rtmpdump
-r "rtmp://dcfms35-202.streamedia.info/VOD/" -a "VOD/" -f "WIN 11,2,202,228" -W
"http://citedelamusique.tv/Player/lecteur_video.swf" -p "http://citedelamusique.
tv/Concert/0985774.html" -y "mp4:PLVI/PLVI000178200/PLVI000178201/PLVI000178201_
00_LQ.mp4" -o "PLVI000178201_00_LQ.mp4.flv" -e
RTMPDump v2.4 GIT-2012-03-08 (Compiled by KSV)
(c) 2010 Andrej Stepanchuk, Howard Chu, The Flvstreamer Team; license: GPL
Connecting ...
INFO: Connected...
Resuming download at: 375366.691 kB / 5091.560 sec (83.0%)
INFO: Metadata:
INFO:   duration              6133.96
INFO:   moovPosition          40.00
INFO:   width                 512.00
INFO:   height                288.00
INFO:   videocodecid          avc1
INFO:   audiocodecid          mp4a
INFO:   avcprofile            77.00
INFO:   avclevel              21.00
INFO:   aacaot                2.00
INFO:   videoframerate        25.00
INFO:   audiosamplerate       48000.00
INFO:   audiochannels         2.00
INFO: trackinfo:
INFO:   length                15334900.00
INFO:   timescale             2500.00
INFO: sampledescription:
INFO:   sampletype            avc1
INFO:   length                15334900.00
INFO:   timescale             2500.00
INFO: sampledescription:
INFO:   length                294429696.00
INFO:   timescale             48000.00
INFO: sampledescription:
INFO:   sampletype            mp4a
INFO:   length                294429696.00
INFO:   timescale             48000.00
INFO: sampledescription:
INFO:   length                552056400.00
INFO:   timescale             90000.00
INFO: sampledescription:
446208.087 kB / 6082.26 sec (99.1%)
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 11:02 PM.


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