PDA

View Full Version : Little help here


zerocool
03-07-2014, 02:43 AM
I was trying to dump a stream from this page http://freecric.net/willow-cricket-live-stream-tv.php to VLC.
I have got all the required parameters using Coojah 6

url: rtmp://206.190.140.20/live/star341?id=8566
app: live
extra: AAAAAAIAAAACAAAAT0sAAA==
flashVer: WIN 12,0,0,70
pageUrl: http://www.janjua.tv/embedplayer/star341/2/600/420
swfUrl: http://www.janjua.tv/resources/scripts/eplayer.swf
tcUrl: rtmp://206.190.140.20/live
playPath: star341?id=8566


here is the rtmpdump command that am using

rtmpdump -r "rtmp://206.190.140.20/live/star341?id=8566" -t "rtmp://206.190.140.20/live" -a "live" -y "star341?id=8566" -s "http://www.janjua.tv/resources/scripts/eplayer.swf" -p "http://www.janjua.tv/embedplayer/star341/2/600/420" -f "WIN 12,0,0,70" -C "S:OK" | "C:\Program Files (x86)\VideoLAN\VLC\vlc.exe"

using wireshark i figured the required AMF data and appended it using

-C "S:OK"

when i start rtmpdump it connects, displays some stream properties and then does nothing, nothing is played in VLC

http://i.imgur.com/pzjqSgM.png

if i try to download the stream using Coojah/Blader it suprisingly downloads fine

can anyone help me out :confused: :confused:

hasomaso
03-07-2014, 02:52 AM
with that works fine by me

try

rtmpdump -v -r "rtmp://206.190.139.28/live" -a "live" -f "WIN 12,0,0,70" -W "http://www.janjua.tv/resources/scripts/eplayer.swf" -p "http://www.janjua.tv/embedplayer/star341/2/600/420" -C S:OK -y "star341?id=8566" | c:\progra~1\videolan\vlc\vlc -

zerocool
03-07-2014, 04:10 AM
rtmpdump -v -r "rtmp://206.190.139.28/live" -a "live" -f "WIN 12,0,0,70" -W "http://www.janjua.tv/resources/scripts/eplayer.swf" -p "http://www.janjua.tv/embedplayer/star341/2/600/420" -C S:OK -y "star341?id=8566" | c:\progra~1\videolan\vlc\vlc -

this works for me, so was my command overkill?