Audio/video stream recording forums
|
Attention Visitor: |
You may have to register or log in before you can post:
|
|
|
Thread Tools | Display Modes |
|
#1
|
|||
|
|||
ERROR: RTMP_ReadPacket, failed to read RTMP packet headerI'm trying to receive live stream video from a site of a regional TV company.
I run Code:
rtmpdump -v -r rtmp://ntk-origin2.cdn.ngenix.net:1935/live/_definst_/9tv-orb_ -W http://kuban24.tv/bundles/frontend/js/flowplayer-3.2.5.swf -p http://kuban24.tv/tv/ -z What's wrong? |
#2
|
|||
|
|||
Re: ERROR: RTMP_ReadPacket, failed to read RTMP packet headerYour datas are wrong.Also your playpath is not complete.Try this below.
Code:
-v -r "rtmp://ntk-live.cdn.ngenix.net/slive/_definst_/" -a "slive/_definst_/" -W "http://kuban24.tv/bundles/frontend/js/flowplayer-3.2.5.swf" -y "mp4:9tv-orb?t=1412632809&h=wHR0kJM1683OpDp8ZLxV4Q==" -o "out.flv" |
#3
|
|||
|
|||
Re: ERROR: RTMP_ReadPacket, failed to read RTMP packet headerQuote:
|
#4
|
|||
|
|||
Re: ERROR: RTMP_ReadPacket, failed to read RTMP packet headerYes you need to refresh the playpath which is dynamic.Just reload the site to get the new session playpath.
Code:
-y "mp4:9tv-orb?t=1412635103&h=/p3er68fn+zbn9wbschbxg==" Code:
?t=1412635103&h=/p3er68fn+zbn9wbschbxg== Code:
?t=1412632809&h=whr0kjm1683opdp8zlxv4q== |
#5
|
|||
|
|||
Re: ERROR: RTMP_ReadPacket, failed to read RTMP packet headerThank a lot for your advice. It works. I add curl and grep subcommands on my Linux system for extract current dynamic part and it's successful:
Code:
rtmpdump -v -r "rtmp://ntk-live.cdn.ngenix.net/slive/_definst_/" -a "slive/_definst_/" -W "http://kuban24.tv/bundles/frontend/js/flowplayer-3.2.5.swf" -y "$(curl -s http://kuban24.tv/tv/ | grep -o "mp4:9tv-orb[^\"]*")" Code:
rtmpdump -v -r "rtmp://ua4.parom.tv:1935/stream/" -a "stream/" -W "http://ru.parom.tv/player.swf" -p "http://ru.parom.tv/ru/1tv" -y "$(curl -s http://ru.parom.tv/ru/1tv | grep -Po "file=\K[^\&]*")" P.S. Sorry for my bad English. |
#6
|
|||
|
|||
Re: ERROR: RTMP_ReadPacket, failed to read RTMP packet headerQuote:
|
Tags: rtmpdump |
Thread Tools | |
Display Modes | |
|
|