In Python-Django, I've got a Model with a FileField member in it. This member stores video files.
I'd like to "interfere" with the standard "add model row/object/instance" proecdure of Django, and manipulate each video I'm adding, before actually committing or adding it to database.
The manipulation is to convert the video to a specific uniform format. Thus, all added videos will eventually be stored in the same format (WebM).
How can I do that? I've looked into Django's custom managers, but I don't think that's what I'm looking for.
Thanks. :)