using System;
namespace Jellyfin.MediaEncoding.Keyframes.FfTool;
///
/// FfTool based keyframe extractor.
///
public static class FfToolKeyframeExtractor
{
///
/// Extracts the keyframes using the fftool executable at the specified path.
///
/// The path to the fftool executable.
/// The file path.
/// An instance of .
public static KeyframeData GetKeyframeData(string ffToolPath, string filePath) => throw new NotImplementedException();
}