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