1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/src/common/SupportedFormats.ts

54 lines
1.9 KiB
TypeScript
Raw Normal View History

import {ClientClass} from './config/public/Config';
let Config: ClientClass;
if (typeof window !== 'undefined') {
// eslint-disable-next-line @typescript-eslint/no-var-requires
Config = require('./config/public/Config').Config;
} else {
// eslint-disable-next-line @typescript-eslint/no-var-requires
Config = require('./config/private/Config').Config;
}
2019-12-10 00:19:28 +08:00
export const SupportedFormats = {
2022-12-29 02:12:18 +08:00
Photos: Config.Media.Photo.supportedFormats,
2019-12-11 17:39:39 +08:00
// Browser supported video formats
// Read more: https://www.w3schools.com/html/html5_video.asp
2022-12-29 02:12:18 +08:00
Videos: Config.Media.Video.supportedFormats,
MetaFiles: Config.MetaFile.supportedFormats,
2019-12-11 17:39:39 +08:00
// These formats need to be transcoded (with the build-in ffmpeg support)
TranscodeNeed: {
// based on libvips, all supported formats for sharp: https://github.com/libvips/libvips
Photos: [] as string[],
2022-12-29 02:12:18 +08:00
Videos: Config.Media.Video.supportedFormatsWithTranscoding,
},
// --------------------------------------------
// Below this, it is autogenerated, DO NOT EDIT
2019-12-10 00:19:28 +08:00
WithDots: {
Photos: [] as string[],
Videos: [] as string[],
MetaFiles: [] as string[],
TranscodeNeed: {
Photos: [] as string[],
Videos: [] as string[],
2022-04-05 01:37:31 +08:00
},
},
2019-12-10 00:19:28 +08:00
};
2022-04-05 01:37:31 +08:00
SupportedFormats.Photos = SupportedFormats.Photos.concat(
2023-09-12 00:57:51 +08:00
SupportedFormats.TranscodeNeed.Photos
2022-04-05 01:37:31 +08:00
);
SupportedFormats.Videos = SupportedFormats.Videos.concat(
2023-09-12 00:57:51 +08:00
SupportedFormats.TranscodeNeed.Videos
2022-04-05 01:37:31 +08:00
);
SupportedFormats.WithDots.Photos = SupportedFormats.Photos.map((f) => '.' + f);
SupportedFormats.WithDots.Videos = SupportedFormats.Videos.map((f) => '.' + f);
SupportedFormats.WithDots.MetaFiles = SupportedFormats.MetaFiles.map(
2023-09-12 00:57:51 +08:00
(f) => '.' + f
2022-04-05 01:37:31 +08:00
);
SupportedFormats.WithDots.TranscodeNeed.Photos =
2023-09-12 00:57:51 +08:00
SupportedFormats.TranscodeNeed.Photos.map((f) => '.' + f);
2022-04-05 01:37:31 +08:00
SupportedFormats.WithDots.TranscodeNeed.Videos =
2023-09-12 00:57:51 +08:00
SupportedFormats.TranscodeNeed.Videos.map((f) => '.' + f);
2019-12-10 00:19:28 +08:00