如何从Wikimedia Commons下载大量音频(.ogg)文件?是否可以使用Mediawiki API?
答案 0 :(得分:5)
您可以使用MediaWiki API获取不仅适用于 .ogg 的网址下载链接,还可以使用Wikimedia Commons上传的任何其他图片或媒体文件。从响应中,您可以轻松下载每个文件。这是C#中的一个例子:
private static void GetFiles(List<string> fileNames)
{
//Get HTML request with all file names
var url = "https://commons.wikimedia.org/w/api.php?action=query&format=xml" +
"&prop=imageinfo&iiprop=url&titles=File:" + string.Join("|File:", fileNames);
using (var webResponse = (HttpWebResponse)WebRequest.Create(url).GetResponse())
{
using (var reader = new StreamReader(webResponse.GetResponseStream()))
{
var response = reader.ReadToEnd();
//Get all file url links by parsing the XML response
var links = XElement.Parse(response).Descendants("ii")
.Select(x => x.Attribute("url").Value);
foreach (var link in links)
{
//Save the current file on the disk
using (var client = new WebClient())
{
var fileName = link.Substring(link.LastIndexOf("/") + 1);
client.DownloadFile(link, fileName);
}
}
}
}
}
用法:
//list of files to download
var fileNames = new List<string>() {
"Flag of France.svg", "Black scorpion.jpg", "Stop.png", //image
"Jingle Bells.ogg", "Bach Astier 15.flac", //audio
"Cable Car.webm", "Lion.ogv", //video
"Animalibrí.gif", //animation
};
GetFiles(fileNames);
注意:文件的API为limit:
最大值数为50(机器人为500)。
因此,如果您需要下载更多文件,则必须将部分拆分并创建其他请求。