From 6ffa9539bbfbfb1090b02cebc8a28283a8c69041 Mon Sep 17 00:00:00 2001 From: cvium Date: Tue, 11 Jan 2022 23:30:30 +0100 Subject: Refactor and add scheduled task --- .../FfTool/FfToolKeyframeExtractor.cs | 23 +++++++++++----------- 1 file changed, 11 insertions(+), 12 deletions(-) (limited to 'src/Jellyfin.MediaEncoding.Keyframes/FfTool/FfToolKeyframeExtractor.cs') diff --git a/src/Jellyfin.MediaEncoding.Keyframes/FfTool/FfToolKeyframeExtractor.cs b/src/Jellyfin.MediaEncoding.Keyframes/FfTool/FfToolKeyframeExtractor.cs index fdd5dc577..aaaca6fe1 100644 --- a/src/Jellyfin.MediaEncoding.Keyframes/FfTool/FfToolKeyframeExtractor.cs +++ b/src/Jellyfin.MediaEncoding.Keyframes/FfTool/FfToolKeyframeExtractor.cs @@ -1,18 +1,17 @@ using System; -namespace Jellyfin.MediaEncoding.Keyframes.FfTool +namespace Jellyfin.MediaEncoding.Keyframes.FfTool; + +/// +/// FfTool based keyframe extractor. +/// +public static class FfToolKeyframeExtractor { /// - /// FfTool based keyframe extractor. + /// Extracts the keyframes using the fftool executable at the specified path. /// - 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(); - } + /// The path to the fftool executable. + /// The file path. + /// An instance of . + public static KeyframeData GetKeyframeData(string ffToolPath, string filePath) => throw new NotImplementedException(); } -- cgit v1.2.3