I have more thank 100,000 of mp3 links in sql table. I need to get album/artist information from the every song link. Is there any way, I can get it without downloading the song. The reson, I am asking is, If I download every song, it will take huge space on my hard drive, which I dont want. Also, it will take lot of time to download all the songs.
I can download the song using
WebClient Client = new WebClient ();
Client.DownloadFile("http://myserver.com/indie/band1.mp3", "band1.mp3");
and
TagLib
to get the song information.
What best options do I have ?
Regards
Paraminder