bump allowed upload size to 2gb on web

This commit is contained in:
Sean Yesmunt 2020-10-20 13:12:03 -04:00
parent 14e1b6c1f7
commit 3b20104261
2 changed files with 3 additions and 3 deletions

View file

@ -1059,7 +1059,7 @@
"minute": "minute",
"hours": "hours",
"hour": "hour",
"%SITE_NAME% uploads are limited to 1 GB. Download the app for unrestricted publishing.": "%SITE_NAME% uploads are limited to 1 GB. Download the app for unrestricted publishing.",
"%SITE_NAME% uploads are limited to 2 GB. Download the app for unrestricted publishing.": "%SITE_NAME% uploads are limited to 2 GB. Download the app for unrestricted publishing.",
"Connected": "Connected",
"Not connected": "Not connected",
"this link": "this link",

View file

@ -76,9 +76,9 @@ function PublishFile(props: Props) {
const [userOptimize, setUserOptimize] = usePersistedState('publish-file-user-optimize', false);
const RECOMMENDED_BITRATE = 6000000;
const TV_PUBLISH_SIZE_LIMIT: number = 1073741824;
const TV_PUBLISH_SIZE_LIMIT: number = 2147483648;
const UPLOAD_SIZE_MESSAGE = __(
'%SITE_NAME% uploads are limited to 1 GB. Download the app for unrestricted publishing.',
'%SITE_NAME% uploads are limited to 2 GB. Download the app for unrestricted publishing.',
{ SITE_NAME }
);
const PROCESSING_MB_PER_SECOND = 0.5;