Advertisement
k1m05

URLSnooper tutorial

Sep 29th, 2013
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.82 KB | None | 0 0
  1. To get a live internet video stream to play in Navi-X you will need a couple of things. *Firstly you will need software to find the rtmp info from a live stream. *I prefer [url=http://www.donationcoder.com/Software/Mouser/urlsnooper/]UrlSnooper[/url].* Now you will need a video stream here I will use [url=http://www.ilive.to/view/30870/]A&E[/url]. *Now to use UrlSnooper you will need to run the program and type rtmp wher is says *also search for like below:
  2.  
  3. [img]http://img802.imageshack.us/img802/6195/kzeo.jpg[/img]
  4.  
  5. **
  6.  
  7. Now Click Sniff Network , and now open A&E. *The info you will need is "TCUrl" (IP Adress of server running stream), the "Playpath" (the given title of the playing stream) , the "SwfUrl" (the http address of the video player) and the "PageUrl" (obviously the http address to the page the stream is playing from in your browser). *
  8.  
  9. TCUrl:
  10.  
  11. After the stream starts to play you can see in the picture below "tcUrl" appears forth down in the list click on it and below you will see "rtmp://176.31.231.124/edge" If you notice the same series of numbers appears to the right under "Source IP". *Hightlight rtmp://176.31.231.124/edge press ctrl+c and paste into your playlist editor or notepad program temperarily.*
  12.  
  13. [img]http://img404.imageshack.us/img404/227/01uo.jpg[/img]*
  14.  
  15. *
  16.  
  17. Playpath:
  18.  
  19. Now you will see "HStarted Playing..." in row 6 your click on it and you will see like in the picture below "rtmp://fms.ilive.to:1935/live/_definst_/8zqdbyxk0ybf7es" *Your playpath is the last group of characters after the "/"*
  20.  
  21. [img]http://img7.imageshack.us/img7/6334/p9rf.jpg[/img]
  22.  
  23.  
  24. Now you will take the "rtmp://176.31.231.124/edge" that you found before and add you playpath to the end so it will look like this:
  25.  
  26. "rtmp://176.31.231.124/edge/8zqdbyxk0ybf7es"
  27.  
  28. or like this:
  29.  
  30. "rtmp://176.31.231.124/edge/ playpath=8zqdbyxk0ybf7es"
  31.  
  32. *Now its time to get the "swfUrl" look back at the image above, it is the first item that came up when i began Sniffing it looks like this "http://cdn.static.ilive.to/jwplayer/player.swf" now you can add this to your line of code. *Also add "live=true" to your code, It should now look like this:
  33.  
  34. "rtmp://176.31.231.124/edge/ playpath=8zqdbyxk0ybf7es swfUrl=http://cdn.static.ilive.to/jwplayer/player.swf live=true"*
  35.  
  36. *And now the final part is the "pageUrl" usually you can just copy the [url]http://whatever.com/[/url] from the browser the video is playing in, other times you need the address video sharing site that the stream is coming from. *if you check the very first image it has this:
  37.  
  38. "p.ageUrl... http://www.ilive.to/view/30870/"*
  39.  
  40. there you have your final peice of info you will need for your code. * Add this in like so:
  41.  
  42. "rtmp://176.31.231.124/edge/ playpath=8zqdbyxk0ybf7es swfUrl=http://cdn.static.ilive.to/jwplayer/player.swf live=true pageUrl=http://www.ilive.to/view/30870/"*
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement