mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-19 17:48:03 +00:00
11 lines
278 B
C#
11 lines
278 B
C#
using System;
|
|
|
|
namespace Jellyfin.MediaEncoding.Keyframes.FfProbe
|
|
{
|
|
public static class FfProbeKeyframeExtractor
|
|
{
|
|
// TODO
|
|
public static KeyframeData GetKeyframeData(string ffProbePath, string filePath) => throw new NotImplementedException();
|
|
}
|
|
}
|