aboutsummaryrefslogtreecommitdiff
path: root/src/Jellyfin.MediaEncoding.Keyframes/FfTool/FfToolKeyframeExtractor.cs
blob: fdd5dc5773adcf5be27d77961801291d8d050806 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;

namespace Jellyfin.MediaEncoding.Keyframes.FfTool
{
    /// <summary>
    /// FfTool based keyframe extractor.
    /// </summary>
    public static class FfToolKeyframeExtractor
    {
        /// <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();
    }
}