Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
WyattBlue committed Nov 23, 2023
1 parent c01335f commit 44cdb9a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 9 deletions.
9 changes: 2 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,5 @@ deactivate
pip install .
```

## Features
pyav is forked from [PyAV](https://github.com/PyAV-Org/PyAV), and currently has the following benefits:
* Wheels for Python 3.12
* Support for Cython 3
* Support for FFmpeg 6, and beyond
* Expanded support for different pixel formats

## About
pyav is a friendly fork of [PyAV](https://github.com/PyAV-Org/PyAV) made by a PyAV maintainer. pyav offers bleeding-edge features in exchange for requiring more up to date Python and FFmpeg versions.
2 changes: 1 addition & 1 deletion av/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class StreamContainer:
def get(
self,
*args: int | Stream | dict[str, int | tuple[int, ...]],
**kwargs: int | tuple[int, ...]
**kwargs: int | tuple[int, ...],
) -> list[Stream]: ...

class Container:
Expand Down
2 changes: 1 addition & 1 deletion tests/test_enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def define_foobar(self, **kwargs):
("FOO", 1),
("BAR", 2),
),
**kwargs
**kwargs,
)

def test_basics(self):
Expand Down

0 comments on commit 44cdb9a

Please sign in to comment.