string host = "http://youtube.com/v/";
string end = ".flv";
WebClient Client = new WebClient ();
StreamReader sr = new StreamReader(@"ids.txt");
string line;
do
{
line = sr.ReadLine();
Client.DownloadFile(host+line+end,line+end);
}
while (line !=null);
sr.Close();
Работает нормально, но позже, чем я буду запускать FLV / видео, это дает мне эту ошибку>
An error occurred when the file plays in Windows Media Player
Почему, что я делаю не так?