ffmpeg essentials fix Project reorganized git lfs ffmpeg removed ffmpeg added
11 lines
236 B
C#
11 lines
236 B
C#
using VDownload.Models;
|
|
|
|
namespace VDownload.Sources.Common
|
|
{
|
|
public interface ISourceSearchService
|
|
{
|
|
Task<Video> SearchVideo(string url);
|
|
Task<Playlist> SearchPlaylist(string url, int maxVideoCount);
|
|
}
|
|
}
|