I signed up for MP3 Tunes service about a month ago, and have been wanting to give it a try. My schedule has been a bit hectick for setting it up though. So about a week ago I got an e-mail from them that that said hey thanks for signing up and now that you have been a member for so long we would like to give you unlimited storage space for all your mp3s. So I figured what the heck. I downloaded the application to "sync" my files and set it to run. It took a very long time. In fact it still is not complete and I need to figure out where it left off. I am still checking out the site as far as streaming goes so I will let you know about that in a future post. But as far as the upload goes just realise that it is very slow. I uploaded just over 100 songs and it took 3 days to do this, this was with a machine that is not used regualarly(YMMV).
This function will take a string and return the hashed value using System.Security.Cryptography; public static string GetSha1(string value) { var data = Encoding.ASCII.GetBytes(value); var hashData = new SHA1Managed().ComputeHash(data); var hash = string.Empty; foreach (var b in hashData) hash += b.ToString("X2"); return hash; } Thanks to Lars-Erik
Comments