View Single Post
  #5  
Old 04-04-2007, 04:05 AM
Stream Recorder
 
Posts: n/a
Default

Getting Windows Media stream URL from .ASX metafile


URL Snooper doesn't work for me here. But I was able to get stream URLs from the .asx metafile (you may find it in the cache folder of your browser). It looks like this:
Code:
<ASX VERSION="3">
<BASE HREF="http://205.134.247.2/QdZmq-LL/" />
<ENTRY>
<TITLE>{'listorder':['Name','Artist','Ragam','Thalam','Composer','Instrument'],'Instrument':'Violin','Artist':[{'data':'Kanyakumari A','type':'text'},{'src':'/z/default/i/ri/9.0.gif','type':'image'}],'mcol':'album','xid':'1520','Name':'Dudukugala','secname':'carnatic_instrumental','secid':'3'}</TITLE>
<REF HREF="wm/carnatic/instrument/kanyakumari/SacredGemsOfThyagaraja/Duduku.wma" />
</ENTRY>
</ASX>
Combining
Code:
http://205.134.247.2/QdZmq-LL/
with
Code:
wm/carnatic/instrument/kanyakumari/SacredGemsOfThyagaraja/Duduku.wma
you get the stream URL:
Code:
http://205.134.247.2/QdZmq-LL/wm/carnatic/instrument/kanyakumari/SacredGemsOfThyagaraja/Duduku.wma
Reply With Quote