Fix build?

This commit is contained in:
cvium
2021-09-23 17:00:39 +02:00
parent d995f0e092
commit 30230aff73
6 changed files with 38 additions and 7 deletions

View File

@@ -2,9 +2,17 @@
namespace Jellyfin.MediaEncoding.Keyframes.FfTool
{
/// <summary>
/// FfTool based keyframe extractor.
/// </summary>
public static class FfToolKeyframeExtractor
{
// TODO
public static KeyframeData GetKeyframeData(string ffProbePath, string filePath) => throw new NotImplementedException();
/// <summary>
/// Extracts the keyframes using the fftool executable at the specified path.
/// </summary>
/// <param name="ffToolPath">The path to the fftool executable.</param>
/// <param name="filePath">The file path.</param>
/// <returns>An instance of <see cref="KeyframeData"/>.</returns>
public static KeyframeData GetKeyframeData(string ffToolPath, string filePath) => throw new NotImplementedException();
}
}