diff options
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', |