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.
37 lines
1.0 KiB
37 lines
1.0 KiB
using MediaBrowser.Common.Configuration;
|
|
using MediaBrowser.Common.IO;
|
|
using MediaBrowser.Common.Net;
|
|
using MediaBrowser.Model.IO;
|
|
using MediaBrowser.Model.Logging;
|
|
using MediaBrowser.Model.Net;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Text;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MediaBrowser.ServerApplication.FFMpeg
|
|
{
|
|
public class FFMpegDownloader
|
|
{
|
|
private readonly IHttpClient _httpClient;
|
|
private readonly IApplicationPaths _appPaths;
|
|
private readonly ILogger _logger;
|
|
private readonly IZipClient _zipClient;
|
|
|
|
public FFMpegDownloader(ILogger logger, IApplicationPaths appPaths, IHttpClient httpClient, IZipClient zipClient)
|
|
{
|
|
_logger = logger;
|
|
_appPaths = appPaths;
|
|
_httpClient = httpClient;
|
|
_zipClient = zipClient;
|
|
}
|
|
|
|
public Task<FFMpegInfo> GetFFMpegInfo()
|
|
{
|
|
return Task.FromResult (new FFMpegInfo());
|
|
}
|
|
}
|
|
}
|