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/video を実行すると、このエラーが発生します >
An error occurred when the file plays in Windows Media Player
なぜ、私が間違っているのですか?