sql server - Processing Mp3 links c# -


i have more thank 100,000 of mp3 links in sql table. need album/artist information every song link. there way, can without downloading song. reson, asking is, if download every song, take huge space on hard drive, dont want. also, take lot of time download songs.

i can download song using

webclient client = new webclient (); client.downloadfile("http://myserver.com/indie/band1.mp3", "band1.mp3"); 

and

taglib  

to song information.

what best options have ?

regards

paraminder

download file -> extract information -> delete file. ===> way workaround space concern.

there isn't anyway extract info(beside extension , name) of file without reading header.


Comments

Popular posts from this blog

apache - Remove .php and add trailing slash in url using htaccess not loading css -

javascript - jQuery show full size image on click -