Audio/video stream recording forums (http://stream-recorder.com/forum/index.php)
-   rtmpdump (http://stream-recorder.com/forum/forumdisplay.php?f=54)
-   -  

[mips.tv and clones] need help to get working rtmp

(http://stream-recorder.com/forum/showthread.php?t=15451)

freez 02-25-2013 04:38 AM

[mips.tv and clones] need help to get working rtmp


 
hi m8s , i am facing a trouble when i run the rtmp string on vlc tha has been extracted by rtmp sniffer programs fro mips.tv server , i am getting full info & when i try to run thr rtmp it shows rtmp error , then i tried to add a string -C "S:OK" will run without error but it is keeping connected without any video running !!!!!! , maybe certain string or code to let the video run , please help , here is the problem:



Code:

X    connect ??      app live flashVer WIN 11,3,300,257 swfUrl *http://mips.tv/content/scripts/eplayer.swf tcUrl rtmp?://206.190.128.108/live fpad  capabilities @m?      audioCodecs @лю      videoCodecs @o€     
videoFunction ??      page?Url 1http://mips.tv/embedplayer/aflam4youfff/1/600/380 objectEncoding @                OK

same info by other programe:

Code:

URL: rtmp://198.105.209.116:1935/live <playpath>EFEDFzddac?id=149861 <swfUrl>http://mips.tv/content/scripts/eplayer.swf <pageUrl>http://aflam4you.tv/channel/50-MBC Action.html <objectEncoding>
here is the site

http://aflam4you.tv/channel/50-MBC%20Action.html

freez 02-25-2013 06:29 AM

Re: need help to get working rtmp from mips.tv server


 
any help from any friends here will be much appreciated , also welcome to any experts advices & help :)

oelk 02-25-2013 07:12 AM

Re: need help to get working rtmp from mips.tv server


 
Playing rtmp streams from VLC isn't stable yet. Using the piping method from here will work, if rtmpdump does.

The server expects the invoking of the method 'gaolVanus' before 'play'. I don't think, that rtmpdump can do this without modification. (Maybe someone who knows better can give a little remark.)
I was able to stream it with my (private) rtmp-lib, so there's hope for you. But I won't modify rtmpdump.

KSV 02-25-2013 07:56 AM

Re: need help to get working rtmp from mips.tv server


 
pretty lame and old trick. i have made the required modifications. i used to provide my binaries along with combined patch file on github but github no longer allows uploading of new binaries though you can still access old packages. this should work on mips.tv and ucaster.eu as well.

Code:

http://www.mediafire.com/file/a2u20kc21bi4idc/rtmpdump-2.4.zip
Code:

rtmpdump -r "rtmp://50.23.65.36/live" -a "live" -f "WIN 11,5,502,146" -W "http://mips.tv/content/scripts/eplayer.swf" -p "http://mips.tv/embedplayer/EFEDFzddac/1/600/380" -C S:OK --live -y "EFEDFzddac?id=149861" -o "EFEDFzddac.flv"
Code:

RTMPDump v2.4 GIT-2012-12-09 (Compiled by KSV)
(c) 2010 Andrej Stepanchuk, Howard Chu, The Flvstreamer Team; license: GPL
Connecting ...
INFO: Connected...
Starting Live Stream
INFO: Metadata:
INFO:  presetname            Custom
INFO:  creationdate          Fri Jan 04 02:14:29 1980
INFO:  videodevice          Pinnacle DVC 80 Video
INFO:  framerate            10.00
INFO:  width                320.00
INFO:  height                240.00
INFO:  videocodecid          avc1
INFO:  videodatarate        140.00
INFO:  avclevel              31.00
INFO:  avcprofile            66.00
INFO:  videokeyframe_frequency5.00
INFO:  audiodevice          Virtual Cable 2
INFO:  audiosamplerate      22050.00
INFO:  audiochannels        1.00
INFO:  audioinputvolume      86.00
INFO:  audiocodecid          .mp3
INFO:  audiodatarate        32.00
318.167 kB / 13.97 sec


oelk 02-25-2013 08:10 AM

Re: need help to get working rtmp from mips.tv server


 
Sorry, I didn't know about your new version. Nice to know, that you've already done everything. ;)
Thank you for your work. It helped me alot.

freez 02-25-2013 11:56 AM

Re: need help to get working rtmp from mips.tv server


 
thankx KSV , i managed to play the link with the latest rtmpdump2.4 patched file with vlc2.4
- now i noticed in ur rtmpdump folder (5 .exe ) files ,how i can use these file in assist with rtmpexplorer to extract the exact string u show in ur post , coz i replaced the rtmpsrv & rtmpsuck with old one in rtmpexplorer folder & tried to extract the link from browser by inserting url link , but unfortunatly no info been provided in the command ( blackbox) window !!!
- sorry another thing how can i use the string to play it with simple tv coz it will show no picture but still connecting ! , i insert same info detail but no picture

thanx for ur help great m8 :)

gorilla.maguila 02-25-2013 05:01 PM

Help with LiveFlash.tv


 
http://www.zuuk.net/sporttv.php?height=500&width=650

Code:

rtmpdump -r rtmp://174.36.146.69/stream -y "nn198?id=84238" -W http://www.liveflash.tv/resources/scripts/eplayer.swf -p "http://www.liveflash.tv/embedplayer/nn198/1/650/500" --debug --live -C S:OK

It seems the flash player it's sending an extra command kaskatija(), Any ideas on how to emulate this on rtmp.c?

Thanks

KSV 02-25-2013 10:41 PM

Re: Help with LiveFlash.tv


 
how many clones do these guys have? i recently did the the same thing for mips.tv and ucaster.eu here. look in the patch file and search for mips.tv. it's pretty easy to add these lame commands.

gorilla.maguila 02-26-2013 01:28 AM

Re: Help with LiveFlash.tv


 
Thanks KSV

Code:

else if (strstr(pageUrl, "liveflash.tv"))
            {
              SAVC(kaskatija);
              enc = pbuf;
              enc = AMF_EncodeString(enc, pend, &av_kaskatija);
              enc = AMF_EncodeNumber(enc, pend, ++r->m_numInvokes);
              *enc++ = AMF_NULL;
              av_Command.av_val = pbuf;
              av_Command.av_len = enc - pbuf;
              SendInvoke(r, &av_Command, FALSE);

              RTMP_SendCreateStream(r);
            }


KSV 02-26-2013 02:01 AM

Re: Help with LiveFlash.tv


 
i have re-uploaded the patch with even more simpler syntax. check out the new version.

Code:

http://www.mediafire.com/file/a2u20kc21bi4idc/rtmpdump-2.4.zip


All times are GMT -6. The time now is 10:23 PM.