PyAV
PyAV copied to clipboard
Pythonic bindings for FFmpeg's libraries.
Expose methods to manipulate options in CodecContext at runtime. To change the h.264 constant rate factor for example
Python3.11 just recently had its first release candidate available. https://www.python.org/downloads/release/python-3110rc1/ Both NumPy and Pillow already support 3.11, and now that the ABI is stable, it's the perfect time for PyAV...
It appears this line should take `layout` and not `layout.layout`? https://github.com/PyAV-Org/PyAV/blob/e50f37d8585502146b648811d2ae9a9081d946ca/av/audio/layout.pyx#L82
Adds support for floating point RGB format. Can be tested with this script: ```python import numpy as np import av WIDTH = 1920 HEIGHT = 1080 BIT_DEPTH = 12 if...
## Overview Permission error when decode video ## Expected behavior ## Actual behavior Some videos encountered strange bugs like below `video = av.open(path)` `video.seek(0) # PermissionError: [Errno 1] Operation not...
## Overview First, my understanding is that when I iterate over a video in the way that the documentation suggests `for frame in container.decode(video=0)` the elements are returned in decoding...
Only `rate` is specified in the documentation, but other things, like `layout` can be specified. See [docs](https://pyav.org/docs/develop/api/container.html?highlight=add_stream#av.container.OutputContainer.add_stream) It would be nice documentation listed the args that can be used or...
## Overview Currently, as best I can tell, it is only possible to set options once: when a codec or (de)muxer is opened. There are cases where one might want...
## Overview I am trying to install av==8.0.2 --no-binary=av, but i'm getting build error ## Expected behavior av module installed without any errors ## Actual behavior Throwing "python setup.py egg_info...