Jump to content

AlexandreCruz

Members
  • Posts

    3
  • Joined

  • Last visited

AlexandreCruz's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Very well! I'm terribly sorry, didn't mean to be arrogant or offensive, once again, terribly sorry. Concerning the script, what im trying to do is somewhat what coojah6(or wireshark, ect) does, wich finds the videos playing with RTMProtocol and retrieve the request header. I don't want to capture the video it's just the link RTMP. I've used Coojah6 to extract the rtmp link... i've tried to automate coojah but without any result. I looked into winpcap too, but without success as well. If someone could help me, or guide to the correct path, i would appreciate. Once more sorry, and thanks in advance.
  2. Hi guys! Im very sorry, but i need help with my script. Im not yet confortable with auto it, but im trying to make a script to convert http links to rtmp links. To simpifly, i want a script that when given, for example, the link "http://www.casadossegredos.tv/tvi" the script will return "rtmp://206.190.130.28/stream/TVI909090909?id=68969" this is what i've done until now: #include <Array.au3> #include <file.au3> #include <IE.au3> Local $file = FileOpen("db.txt", 1) If $file = -1 Then MsgBox(0, "Error", "Unable to open file.") Exit EndIf $oIE = _IECreate("http://www.casadossegredos.tv/tvi", 0, 0) Local $link = _IEGetObjByName($oIE, "rtmp://(.*?)_definst_") if $link == 0 then msgbox(0,"ERROR", "Null") Else msgbox(0,"SUCCESS", $link.innertext) EndIf _IEQuit($oIE) FileWriteLine($file, "Line1") FileClose($file)
×
×
  • Create New...