parameterize media fetch query

This commit is contained in:
WaveringAna 2024-12-28 20:47:14 -05:00
parent 414a4ac11a
commit 6853149638
3 changed files with 360 additions and 136 deletions

View file

@ -20,11 +20,11 @@ import fs from "fs";
* @property {string} APPLE - Uses the h264_videotoolbox codec for Apple GPU/MediaEngine-based encoding
*/
export enum EncodingType {
CPU = "libx264",
NVIDIA = "h264_nvenc",
AMD = "h264_amf",
INTEL = "h264_qsv",
APPLE = "h264_videotoolbox",
CPU = "libx264",
NVIDIA = "h264_nvenc",
AMD = "h264_amf",
INTEL = "h264_qsv",
APPLE = "h264_videotoolbox"
}
/**