I need a bit of guidance. I have a Django app, where users upload photos and captions.
I want to integrate video uploading and playback as well. My question revolves specifically around video file size.
Most of my users have bandwidth issues. It's best if uploaded videos are as small a size as possible (quality can be compromised upon, it can be lossy). What's the best currently-supported Python library to get me started on this (an illustrative example)? I do something similar for photos uploaded on my site using Python Imaging Library.
Pyffmpeg seems to be the closest fit so far. But it doesn't seem to be supported any longer, nor do I find examples of what I'm trying to achieve. ffmpeg seems to be well documented however.