Help getting greek channel to work with rtmpdumpHi All,
I used to have this stream working, then something changed and i can no longer get the correct url. i tried 2.4 and the ksv build with no success. the webpage is http://kanalia.eu/player.php?id=91 and im trying rtmpdump -r rtmp://freeview.fms.visionip.tv/live/tvnetwork-hellenictv-sigma-hsslive-25f-4x3-SDh --live all i get is failed to read rtmp packet header. thanks in advance for your help! |
Re: Help getting greek channel to work with rtmpdumpCode:
rtmpdump -v -r "rtmp://freeview.fms.visionip.tv/live/mp4:tvnetwork-hellenictv-sigma-hsslive-25f-4x3-SDh" | %systemdrive%\progra~2\videolan\vlc\vlc - |
Re: Help getting greek channel to work with rtmpdumpThough the trick posted by karlo (adding mp4: to playpath) works for the time being but it wasn't the actual reason of breakage. if you monitor it with wireshark you will see that it's still using the old playpath (without mp4:) but it has added two non-ASCII characters at the end (CRLF = \x0D\x0A = \r\n) which are newline characters. AFAIK it's not possible to pass on those characters as command line arguments because windows cmd shell treats everything separated by newline as separate command.
|
Re: Help getting greek channel to work with rtmpdumpQuote:
Code:
$ rtmpdump -r rtmp://freeview.fms.visionip.tv/live/tvnetwork-hellenictv-sigma-h |
Re: Help getting greek channel to work with rtmpdumpQuote:
|
Re: Help getting greek channel to work with rtmpdumpQuote:
Code:
$ help echo Quote:
|
Re: Help getting greek channel to work with rtmpdumpAs always you guys are awesome. Thankyou very much for your help this time and every other time I have required it.
My in-laws will be extremely appreciative! |
Re: Help getting greek channel to work with rtmpdumpYou can actually do this without Bash, you just encode the Carriage Return as %d
lists.mplayerhq.hu/pipermail/rtmpdump/2012-October/002109.html Code:
$ rtmpdump -o a.flv -r rtmp://freeview.fms.visionip.tv/live/tvnetwork-hellenict |
Re: Help getting greek channel to work with rtmpdumpQuote:
If you were to do somehting like "foo%Dabc", "%Da" would be replaced with 0xda and you'd lose your "a". If you were to do something like "foo%Dzabc", "%Dz" would be replaced with 0x0d and you'd lose your "z". |
All times are GMT -6. The time now is 06:19 PM. |