PyAV
PyAV copied to clipboard
Pythonic bindings for FFmpeg's libraries.
## Overview Currently, PyAV does not provide a straightforward way to modify the duration of packets in media files. This feature request proposes to add support for modifying duration of...
When I'm trying to open an RTSP stream using PyAV, I encountered an issue. I attempted to open the RTSP stream with the following code: ```python import time import av...
I have a use case where the video I am parsing has "dummy" packets inserted, marked with AV_PKT_FLAG_DISPOSABLE and intended to be skipped over when decoding and found that I...
These variables are documented as part of ffmpeg. It might be useful for others to read and write them.
## Overview I am using an SDP file to stream RTP to pyav. I get the frames in a thread. The timeout argument for av.open() seems to be capped at...
qtrle decoder needs `bits_per_coded_sample` to be set when decoding a packet.
The current log callback sometimes deadlocks when I use aiortc with [this line](https://github.com/aiortc/aiortc/blob/main/src/aiortc/__init__.py#L53) commented out, which uses this package. I couldn't figure out how to properly fix it, so I...
I have a use case where I need to update the PTS and DTS values of a KLV data stream. The suggested change will enable the use of the data...
## Overview Currently, an `AudioFrame` has to be created and then the data set after the fact ( [see here](https://github.com/PyAV-Org/PyAV/blob/6982d818080716b39bc3f333cf19daa0a3e0b56a/av/audio/frame.pyx#L129) ), but it would be nice to be able to...
## Overview I'm working with video streams from a hardware device, which adding SEI NAL-units with specific data, in slightly malformed format. ffmpeg complains about some problems of this format,...