View Single Post
  #3  
Old 04-15-2010, 11:37 AM
elch elch is offline
Member
 
Join Date: Mar 2010
Posts: 78
elch is on a distinguished road
Default

Re: Stream URL Sniffer / URL Finder for Linux


Quote:
Originally Posted by Stream Recorder View Post
What software do you use to Find stream URLs in Linux?
I try to look at the source of the page first searching for "flv", "flash", "mp4" and other keywords. If this didn't help, I either use ngrep or Wireshark. It depends on the site. Most sites luckily store their links in a XML file so it's just a matter of getting the URL. This is the command that filters all GET and POST requests:

Code:
ngrep -lqi -p -W none ^get\|^post tcp dst port 80
Reply With Quote