Support using the custom video serving endpoint even if you don't use object storage (#2924)

* feat(video): refactor video serving endpoint

It can now be used without an object storage provider. Closes #2785

* fix: remove debug log
This commit is contained in:
Gabe Kangas
2023-05-30 14:05:24 -07:00
committed by GitHub
parent 31f2db06f7
commit cd458630ec
14 changed files with 156 additions and 79 deletions

View File

@@ -81,7 +81,6 @@ export interface S3Field {
endpoint: string;
region: string;
secret: string;
servingEndpoint?: string;
forcePathStyle: boolean;
}
@@ -145,6 +144,7 @@ export interface ConfigDetails {
videoSettings: VideoSettingsFields;
webServerPort: string;
socketHostOverride: string;
videoServingEndpoint: string;
yp: ConfigDirectoryFields;
supportedCodecs: string[];
videoCodec: string;