PyAV icon indicating copy to clipboard operation
PyAV copied to clipboard

Pythonic bindings for FFmpeg's libraries.

Results 105 PyAV issues
Sort by recently updated
recently updated
newest added

## Overview It seems that av_interleaved_write_frame adds some buffered that may be unecessary in some applications. It would be good to be able to remove that need. Would you consider...

enhancement

## Overview I'm getting two RemoteStreamTracks of type audio and video from aiortc, I want to save chunks of 10 seconds from the stream without breaking the stream. ## Expected...

user help

## Overview I am trying to process the following file: [026.webm](https://github.com/PyAV-Org/PyAV/assets/61652821/c1ec7828-6891-41c8-a56e-0bed0eea5cbc) The webm file should contain 152 frames, however pyav can only read 23 frames: ```python import av from av.codec.context...

bug

## Overview `video.display_aspect_ratio` and `video.sample_aspect_ratio` don't always return the correct values. ## Reproduction Using the following script: ```python import av import sys container = av.open(sys.argv[1]) video = next(s for s...

enhancement

## Overview I think there is a memory leak that occurs if you don't explicitly close a container or stream. > **WyattBlue: Stream only. Other leaks have been fixed in...

bug

I am progressively returning from a much needed break regarding the opensource projects I maintain, and am looking for a more sustainable way to maintain them. Some years ago, I...

help wanted

## Overview Add the option to set `bits_per_coded_sample` on the codec context. ```python import av codec = av.codec.Codec("qtrle", "r").create() p = av.Packet() codec.decode(p) ``` Results in: ``` Unsupported colorspace: 0...

enhancement

## Overview Program crashes when output container uses input container properties as output container as template after input container is closed ## Expected behavior The corresponding exception should be thrown...

bug

Currently our release size is around 1GB due to the large number of wheels we produce. This has started being a problem since we have hit the default 10 GB...

build

Hey, I am trying to use PyAV to open (listen for) rtmp stream. My code is: ``` import av print("opening video...") container = av.open("rtmp://127.0.0.1:12345", options={'listen': '1'}) print("running test") for packet...

user help