2014-02-04 20:19:29 +00:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
2014-06-17 01:56:23 +00:00
|
|
|
|
using MediaBrowser.Model.MediaInfo;
|
2014-02-04 20:19:29 +00:00
|
|
|
|
using System;
|
2013-04-07 20:55:05 +00:00
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
2016-04-30 19:16:43 +00:00
|
|
|
|
using MediaBrowser.Model.Dlna;
|
2013-04-07 20:55:05 +00:00
|
|
|
|
|
2014-02-20 16:37:41 +00:00
|
|
|
|
namespace MediaBrowser.Controller.MediaEncoding
|
2013-04-07 20:55:05 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Interface IMediaEncoder
|
|
|
|
|
/// </summary>
|
2016-04-30 19:16:43 +00:00
|
|
|
|
public interface IMediaEncoder : ITranscoderSupport
|
2013-04-07 20:55:05 +00:00
|
|
|
|
{
|
2016-06-29 05:49:31 +00:00
|
|
|
|
string EncoderLocationType { get; }
|
|
|
|
|
|
2013-04-07 20:55:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the encoder path.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The encoder path.</value>
|
|
|
|
|
string EncoderPath { get; }
|
|
|
|
|
|
2015-09-18 03:08:45 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Supportses the decoder.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="decoder">The decoder.</param>
|
|
|
|
|
/// <returns><c>true</c> if XXXX, <c>false</c> otherwise.</returns>
|
|
|
|
|
bool SupportsDecoder(string decoder);
|
|
|
|
|
|
2013-04-07 20:55:05 +00:00
|
|
|
|
/// <summary>
|
2014-03-27 19:30:21 +00:00
|
|
|
|
/// Extracts the audio image.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="path">The path.</param>
|
2016-01-11 16:52:22 +00:00
|
|
|
|
/// <param name="imageStreamIndex">Index of the image stream.</param>
|
2014-03-27 19:30:21 +00:00
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task{Stream}.</returns>
|
2016-07-01 02:35:18 +00:00
|
|
|
|
Task<string> ExtractAudioImage(string path, int? imageStreamIndex, CancellationToken cancellationToken);
|
2014-03-27 19:30:21 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Extracts the video image.
|
2013-04-07 20:55:05 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="inputFiles">The input files.</param>
|
2014-06-17 01:56:23 +00:00
|
|
|
|
/// <param name="protocol">The protocol.</param>
|
2013-06-27 15:59:32 +00:00
|
|
|
|
/// <param name="threedFormat">The threed format.</param>
|
2013-04-07 20:55:05 +00:00
|
|
|
|
/// <param name="offset">The offset.</param>
|
2014-02-04 20:19:29 +00:00
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task{Stream}.</returns>
|
2016-09-30 18:43:59 +00:00
|
|
|
|
Task<string> ExtractVideoImage(string[] inputFiles, string container, MediaProtocol protocol, Video3DFormat? threedFormat, TimeSpan? offset, CancellationToken cancellationToken);
|
2013-04-07 20:55:05 +00:00
|
|
|
|
|
2016-09-30 18:43:59 +00:00
|
|
|
|
Task<string> ExtractVideoImage(string[] inputFiles, string container, MediaProtocol protocol, int? imageStreamIndex, CancellationToken cancellationToken);
|
2016-04-13 20:49:16 +00:00
|
|
|
|
|
2014-06-29 17:35:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Extracts the video images on interval.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="inputFiles">The input files.</param>
|
|
|
|
|
/// <param name="protocol">The protocol.</param>
|
|
|
|
|
/// <param name="threedFormat">The threed format.</param>
|
|
|
|
|
/// <param name="interval">The interval.</param>
|
|
|
|
|
/// <param name="targetDirectory">The target directory.</param>
|
|
|
|
|
/// <param name="filenamePrefix">The filename prefix.</param>
|
|
|
|
|
/// <param name="maxWidth">The maximum width.</param>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
2016-06-29 05:49:31 +00:00
|
|
|
|
Task ExtractVideoImagesOnInterval(string[] inputFiles,
|
|
|
|
|
MediaProtocol protocol,
|
|
|
|
|
Video3DFormat? threedFormat,
|
|
|
|
|
TimeSpan interval,
|
|
|
|
|
string targetDirectory,
|
|
|
|
|
string filenamePrefix,
|
2014-06-29 17:35:05 +00:00
|
|
|
|
int? maxWidth,
|
|
|
|
|
CancellationToken cancellationToken);
|
2015-04-04 19:35:29 +00:00
|
|
|
|
|
2013-04-07 20:55:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the media info.
|
|
|
|
|
/// </summary>
|
2015-04-05 15:01:57 +00:00
|
|
|
|
/// <param name="request">The request.</param>
|
2013-04-07 20:55:05 +00:00
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
2015-04-05 15:01:57 +00:00
|
|
|
|
Task<MediaInfo> GetMediaInfo(MediaInfoRequest request, CancellationToken cancellationToken);
|
2013-04-07 20:55:05 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the input argument.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="inputFiles">The input files.</param>
|
2014-06-17 01:56:23 +00:00
|
|
|
|
/// <param name="protocol">The protocol.</param>
|
2013-04-07 20:55:05 +00:00
|
|
|
|
/// <returns>System.String.</returns>
|
2014-06-17 01:56:23 +00:00
|
|
|
|
string GetInputArgument(string[] inputFiles, MediaProtocol protocol);
|
2014-06-26 17:04:11 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the time parameter.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="ticks">The ticks.</param>
|
|
|
|
|
/// <returns>System.String.</returns>
|
|
|
|
|
string GetTimeParameter(long ticks);
|
2015-01-02 05:36:27 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Encodes the audio.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="options">The options.</param>
|
|
|
|
|
/// <param name="progress">The progress.</param>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
|
|
|
|
Task<string> EncodeAudio(EncodingJobOptions options,
|
|
|
|
|
IProgress<double> progress,
|
|
|
|
|
CancellationToken cancellationToken);
|
2015-01-02 06:12:58 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Encodes the video.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="options">The options.</param>
|
|
|
|
|
/// <param name="progress">The progress.</param>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task<System.String>.</returns>
|
|
|
|
|
Task<string> EncodeVideo(EncodingJobOptions options,
|
|
|
|
|
IProgress<double> progress,
|
|
|
|
|
CancellationToken cancellationToken);
|
2015-08-16 15:53:30 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Escapes the subtitle filter path.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="path">The path.</param>
|
|
|
|
|
/// <returns>System.String.</returns>
|
|
|
|
|
string EscapeSubtitleFilterPath(string path);
|
2016-06-20 06:19:28 +00:00
|
|
|
|
|
2016-06-30 04:23:52 +00:00
|
|
|
|
Task Init();
|
2016-06-23 17:04:18 +00:00
|
|
|
|
|
2017-05-26 06:48:54 +00:00
|
|
|
|
void UpdateEncoderPath(string path, string pathType);
|
2016-08-05 05:12:25 +00:00
|
|
|
|
bool SupportsEncoder(string encoder);
|
2016-11-29 19:13:20 +00:00
|
|
|
|
|
|
|
|
|
void SetLogFilename(string name);
|
|
|
|
|
void ClearLogFilename();
|
2013-04-07 20:55:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|