diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-03-06 19:49:51 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-06 11:49:51 -0800 |
commit | 153fc17676cf9301e0f066e3c280da83821a6a63 (patch) | |
tree | 732c6805267ff87d5c656af59cfeaf7956af5634 /src/lib/constants.ts | |
parent | 8eb1f8f1fc0d80635ac2f78d87adc73a3862ca3f (diff) | |
download | voidsky-153fc17676cf9301e0f066e3c280da83821a6a63.tar.zst |
tweak ci (#7916)
Diffstat (limited to 'src/lib/constants.ts')
-rw-r--r-- | src/lib/constants.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/constants.ts b/src/lib/constants.ts index c03439f56..d2f585256 100644 --- a/src/lib/constants.ts +++ b/src/lib/constants.ts @@ -168,6 +168,9 @@ export const MAX_LABELERS = 20 export const VIDEO_SERVICE = 'https://video.bsky.app' export const VIDEO_SERVICE_DID = 'did:web:video.bsky.app' +export const VIDEO_MAX_DURATION_MS = 3 * 60 * 1000 // 3 minutes in milliseconds +export const VIDEO_MAX_SIZE = 1000 * 1000 * 100 // 100mb + export const SUPPORTED_MIME_TYPES = [ 'video/mp4', 'video/mpeg', |