What is the maximum size video we can upload on strapi ? My video file is 18 mb but it is giving me error file is too big

System Information
  • Strapi Version: 3.6.2
  • Operating System:
  • Database:
  • Node Version: 10.24.0
  • NPM Version:
  • Yarn Version:

@DMehaffy Can you please help me with this. I am trying to upload a video from vimeo using the url but its not working. I also tried to upload the video from my local system but it’s giving error file size too big. I really need to figure out a way as we have to launch our website next month. I would really appreciate your prompt response.
Thanks

To upload videos larger than the default 200MB limit in Strapi, modify the formidable option in the upload plugin configuration file, setting the maxFileSize property to the desired size in bytes. For instance, to allow videos up to 600MB, change formidable.maxFileSize to 600 * 1024 * 1024 in the config/plugins/upload.js file. After saving the changes, you should be able to upload larger videos without errors.