PyAV
PyAV copied to clipboard
Pythonic bindings for FFmpeg's libraries.
Here are my thoughts on the current release schedule: --- **v13.0.0** Release date: September 1st or 2nd - Supports FFmpeg 6 and FFmpeg 7 - Build wheels with Python 3.13...
I see in #1248 that the doc links have been moved from pyav.org to pyav.basswood-io.com in a number of places, but the old link is still around in at least...
## Overview Decoding image frames from media which does not have a colorspace tag does not produce images that visually matche the source movie file. Historically using both ffmpeg and...
Any attempt to `from av.packet cimport Packet` and build shows a failure that looks like this: ``` Error compiling Cython file: ------------------------------------------------------------ ... cimport libav as lib ^ ------------------------------------------------------------ /home/jorge/.local/lib/python3.8/site-packages/av/packet.pxd:1:8:...
When I set the pts and dts myself, the btr will become 100 uncontrollably. When I don't modify the pts and dts, the value of the btr is consistent with...
### Discussed in https://github.com/PyAV-Org/PyAV/discussions/1276 Originally posted by **bhack** February 15, 2024 Is it possible to use [FFMPEG Vulkan decoder](https://trac.ffmpeg.org/wiki/HWAccelIntro#Vulkan) and then [access with cuda](https://github.com/FFmpeg/FFmpeg/blob/master/libavutil/hwcontext_vulkan.c#L3572) using PyAV?
_Originally posted by @rawler in https://github.com/PyAV-Org/PyAV/issues/704#issuecomment-1320310595_ **What I _really_ need is a way to pass options to `avio_open2`.** Note that this is already done internally by `avformat_open_input`, so can already...
## Overview I have a class that accepts audio inputs and resamples them as needed, the resampler parameters are different for each call so I can't create the resampler as...
## Overview When decoding a full-range yuv444p video stream and converting to RGB like so ``` import av from PIL import Image with open(video_path, 'rb') as file: with av.open(file) as...