django-video-encoding icon indicating copy to clipboard operation
django-video-encoding copied to clipboard

django-video-encoding helps to convert your videos into different formats and resolutions.

Results 15 django-video-encoding issues
Sort by recently updated
recently updated
newest added

When a video has a non utf-8 metadate the encoding breaks. This is the output of ffmpeg: ``` com.apple.quicktime.artwork: ���� ``` And here is where the encoding breaks: ``` video_encoding/backends/ffmpeg.py",...

ffmpeg sometimes outputs crazy non utf-8 characters coming from video metadata. There is no reason to stop processing because of that. ## Description Please include a summary of the proposed...

https://github.com/escaped/django-video-encoding/blob/master/video_encoding/backends/ffmpeg.py#L110-L112 yield value `[0, 1]` ```python percent = round(time / total_time, 2) logger.debug('yield {}%'.format(percent)) yield percent ``` while https://github.com/escaped/django-video-encoding/blob/master/video_encoding/backends/ffmpeg.py#L124 yield value `100` ```python yield 100 ```

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...

enhancement
help wanted

In latest django versions a warning is emitted when models do not explicitly define a primary key. ```` (somus-api) ~/Documents/code/somus/somus-api(hotfix/video-encoding-update ✗) python manage.py runserver 2021-10-15 23:16:56,588 django.utils.autoreload INFO Watching for...

enhancement
help wanted

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.

enhancement
help wanted

Currently the directions for creating a custom backend (which I am doing) say the following: >**Create a new class which inherits from video_encoding.backends.base.BaseEncodingBackend.** ... >If you want to open source...

Hello, I wanted to contribute to django-video-encoding. I designed a logo for it. If you like any of these, I'll send you files and pr.. I wanted to make a...

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...

enhancement
help wanted