Add image provider tests and clean up

This commit is contained in:
Joe Rogers 2021-10-11 12:34:18 +02:00
parent 8d70cc2dde
commit e3eee10d05
No known key found for this signature in database
GPG key ID: 0074AD57B8FDBBB4
6 changed files with 408 additions and 29 deletions

View file

@ -95,7 +95,7 @@ namespace MediaBrowser.Controller.MediaEncoding
/// <param name="mediaSource">Media source information.</param>
/// <param name="imageStream">Media stream information.</param>
/// <param name="imageStreamIndex">Index of the stream to extract from.</param>
/// <param name="outputExtension">The extension of the file to write.</param>
/// <param name="outputExtension">The extension of the file to write, including the '.'.</param>
/// <param name="cancellationToken">CancellationToken to use for operation.</param>
/// <returns>Location of video image.</returns>
Task<string> ExtractVideoImage(string inputFile, string container, MediaSourceInfo mediaSource, MediaStream imageStream, int? imageStreamIndex, string outputExtension, CancellationToken cancellationToken);