WyattBlue
WyattBlue
"confirmation" meaning someone else can reproduce the problem. If you are experiencing the same problem, **don't make a new issue**. Instead, comment on the original issue and add all the...
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...
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...
_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...
Don't merge right now. "rendering" subtitles does not create correct results. More testing is needed.
a.k.a `ffmpeg.c` in `fftools` ## Overview Doing many tasks using the "proper" APIs is verbose, error-prone, and brittle in the face of major ffmpeg version bumps. Allowing using the command...
```python import av from fractions import Fraction def copy_video_stream(container): input_ = av.open("example.mp4") video_stream = container.add_stream("h264", rate=30) video_stream.width = input_.streams.video[0].width video_stream.height = input_.streams.video[0].height video_stream.pix_fmt = "yuv420p" for frame in input_.decode(video=0): packet...
`ctranslate2` doesn't have wheels for Python 3.13 nor provides a source dist, so you'll have to settle for Python 3.12 1. Install [uv](https://docs.astral.sh/uv/#highlights) 1. Go to a project directory where...
`markdown()` in this library appears to not be thread safe. ``` SIGSEGV: Illegal storage access. (Attempt to read from nil?) ``` Nim version: ``` nim --version Nim Compiler Version 2.2.6...
PyAV will remove support for MacOS x86_64 (Intel) in Fall 2027. This is because Apple and Github Actions will remove support for this platform at that time.