fix(server): partial fallback for hardware transcoding (#14611)

This commit is contained in:
Mert
2024-12-10 12:11:19 -05:00
committed by GitHub
parent 1ba622adc9
commit 60c783bbe9
4 changed files with 121 additions and 121 deletions

View File

@@ -130,6 +130,11 @@ export interface ProbeOptions {
countFrames: boolean;
}
export interface VideoInterfaces {
dri: string[];
mali: boolean;
}
export interface IMediaRepository {
// image
extract(input: string, output: string): Promise<boolean>;