XF 2.1 Compressing video uploads

darkeye

Active member
How I can compress video uploads like whatts app? If I send an 36 sec video in 1080p HD via whatts app, than it will be compressed to 7,6 MB. How I can realize that in Xenforo?

In my forum there are no video uploads from users. In similar Facebook groups there are every day uploaded videos. I think, Xenforo have to do something in this way...

With uploaded pictures I made it very good: I use in config.php
Code:
$config['maxImageResizePixelCount'] = 200000000;
- But how with videos???
 
Videos uploaded as attachments are saved as-is, it is not possible to process them.
Videos uploaded in XFMG can be transcoded with FFMpeg if that is installed on your server.
But that is still lightyears from the video procesing / serving features found at YouTube, Facebook, etc.
 
Top Bottom