bump allowed upload size to 2gb on web
This commit is contained in:
parent
14e1b6c1f7
commit
3b20104261
2 changed files with 3 additions and 3 deletions
|
@ -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",
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue