Alexander Frenzel
Alexander Frenzel
We currently have some default parameters (https://github.com/escaped/django-video-encoding/blob/master/video_encoding/config.py) to encode videos for the web. As I am not a video compression expert, I suspect that these values can be tweaked and...
Many encoders provide multi-pass encoding for higher image quality and compression ration (eg. [VP9](https://developers.google.com/media/vp9/settings/vod/#ffmpeg_command_lines)). This is currently not supported and would be a nice addition for some use cases.
Currently, all videos will be scaled to the requested resolution. This does not make sense when a video will be upscaled. We should change the source so that 1. the...
implements last comment of commit fd179f2
This will be the next major release and includes the following changes: - [ ] Class-based actions - [ ] better support for intermediate forms - [ ] support for...
Hello :), I am very glad to see that this project made its way to PyPI. This is very exciting and will helpful for quite some people. I was using...
Django 3.2 got a similar feature ([`@display`](https://docs.djangoproject.com/en/3.2/ref/contrib/admin/#django.contrib.admin.display)). We should update this project to make it compatible: * update function signiture * `admin_order_field` -> `ordering` * `short_description` -> `description` * etc....