You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using DownKyi.Models;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace DownKyi.Services.Download
|
|
|
|
|
{
|
|
|
|
|
public interface IDownloadService
|
|
|
|
|
{
|
|
|
|
|
void Parse(DownloadingItem downloading);
|
|
|
|
|
string DownloadAudio(DownloadingItem downloading);
|
|
|
|
|
string DownloadVideo(DownloadingItem downloading);
|
|
|
|
|
string DownloadDanmaku(DownloadingItem downloading);
|
|
|
|
|
List<string> DownloadSubtitle(DownloadingItem downloading);
|
|
|
|
|
string DownloadCover(DownloadingItem downloading, string coverUrl, string fileName);
|
|
|
|
|
string MixedFlow(DownloadingItem downloading, string audioUid, string videoUid);
|
|
|
|
|
|
|
|
|
|
void Start();
|
|
|
|
|
void End();
|
|
|
|
|
}
|
|
|
|
|
}
|