< Summary - Jellyfin

Information
Class: Jellyfin.MediaEncoding.Keyframes.FfTool.FfToolKeyframeExtractor
Assembly: Jellyfin.MediaEncoding.Keyframes
File(s): /srv/git/jellyfin/src/Jellyfin.MediaEncoding.Keyframes/FfTool/FfToolKeyframeExtractor.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 1
Coverable lines: 1
Total lines: 17
Line coverage: 0%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Coverage history

Coverage history 0 25 50 75 100

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
GetKeyframeData(...)100%210%

File(s)

/srv/git/jellyfin/src/Jellyfin.MediaEncoding.Keyframes/FfTool/FfToolKeyframeExtractor.cs

#LineLine coverage
 1using System;
 2
 3namespace Jellyfin.MediaEncoding.Keyframes.FfTool;
 4
 5/// <summary>
 6/// FfTool based keyframe extractor.
 7/// </summary>
 8public static class FfToolKeyframeExtractor
 9{
 10    /// <summary>
 11    /// Extracts the keyframes using the fftool executable at the specified path.
 12    /// </summary>
 13    /// <param name="ffToolPath">The path to the fftool executable.</param>
 14    /// <param name="filePath">The file path.</param>
 15    /// <returns>An instance of <see cref="KeyframeData"/>.</returns>
 016    public static KeyframeData GetKeyframeData(string ffToolPath, string filePath) => throw new NotImplementedException(
 17}