SHA256
15
0
forked from pool/python-av

- update to 11.0.0:

* Add support for FFmpeg 6.0, drop support for FFmpeg < 5.0.
  * Add support for Python 3.12, drop support for Python < 3.8.
  * Add support for the ENCODER_FLUSH encoder flag
  * Add VideoFrame ndarray operations for yuv444p/yuvj444p formats
  * Add setters for AVFrame.dts, AVPacket.is_keyframe and
    AVPacket.is_corrupt (:issue:`1179`).
  * Fix build using Cython 3 (:issue:`1140`).
  * Populate new streams with codec parameters (:issue:`1044`).
  * Explicitly set python_requires to avoid installing on
    incompatible Python (:issue:`1057`).
  * Make AudioFifo.__repr__ safe before the first frame
  * Guard input container members against use after closes
- restrict to older Cython bindings version
  * Fix setting CodecContext.extradata (:issue:`801`).
      - Avoid infinite timeout in :func:`av.open` (:issue:`589`).

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-av?expand=0&rev=29
This commit is contained in:
2023-12-05 17:36:48 +00:00
committed by Git OBS Bridge
parent 08751f273c
commit 53f37b17ee
4 changed files with 28 additions and 12 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8afd3d5610e1086f3b2d8389d66672ea78624516912c93612de64dcaa4c67e05
size 2434348

3
av-11.0.0.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:48223f000a252070f8e700ff634bb7fb3aa1b7bc7e450373029fbdd6f369ac31
size 3652129

View File

@@ -1,7 +1,24 @@
-------------------------------------------------------------------
Tue Dec 5 17:34:56 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 11.0.0:
* Add support for FFmpeg 6.0, drop support for FFmpeg < 5.0.
* Add support for Python 3.12, drop support for Python < 3.8.
* Add support for the ENCODER_FLUSH encoder flag
* Add VideoFrame ndarray operations for yuv444p/yuvj444p formats
* Add setters for AVFrame.dts, AVPacket.is_keyframe and
AVPacket.is_corrupt (:issue:`1179`).
* Fix build using Cython 3 (:issue:`1140`).
* Populate new streams with codec parameters (:issue:`1044`).
* Explicitly set python_requires to avoid installing on
incompatible Python (:issue:`1057`).
* Make AudioFifo.__repr__ safe before the first frame
* Guard input container members against use after closes
-------------------------------------------------------------------
Sun Aug 13 19:36:51 UTC 2023 - Dirk Müller <dmueller@suse.com>
- restrict to older Cython bindings version
- restrict to older Cython bindings version
-------------------------------------------------------------------
Wed Mar 29 04:51:43 UTC 2023 - Mia Herkt <mia@0x0.st>
@@ -90,7 +107,7 @@ Tue Jan 11 03:17:08 UTC 2022 - Steve Kowalik <steven.kowalik@suse.com>
* Fix documentation code block indentation (:issue:`783`).
* Fix link to Conda installation instructions (:issue:`782`).
* Export AudioStream from av.audio (:issue:`775`).
* Fix setting CodecContext.extradata (:issue:`801`).
* Fix setting CodecContext.extradata (:issue:`801`).
-------------------------------------------------------------------
Tue Feb 23 18:33:31 UTC 2021 - Ben Greiner <code@bnavigator.de>
@@ -132,7 +149,7 @@ Wed Jun 24 01:24:35 UTC 2020 - Steve Kowalik <steven.kowalik@suse.com>
- Fix Python 3.8 deprecation warning related to abstract base classes (:issue:`616`).
- Remove ICC profiles from logos (:issue:`622`).
+ Fixes:
- Avoid infinite timeout in :func:`av.open` (:issue:`589`).
- Avoid infinite timeout in :func:`av.open` (:issue:`589`).
-------------------------------------------------------------------
Wed May 27 09:36:11 UTC 2020 - Petr Gajdos <pgajdos@suse.com>

View File

@@ -16,24 +16,23 @@
#
%define skip_python2 1
%{?sle15_python_module_pythons}
Name: python-av
Version: 10.0.0
Version: 11.0.0
Release: 0
Summary: Python bindings for FFmpeg's libraries
License: BSD-3-Clause
URL: https://github.com/PyAV-Org/PyAV
Source: https://files.pythonhosted.org/packages/source/a/av/av-%{version}.tar.gz
BuildRequires: %{python_module Cython with %python-Cython < 3}
BuildRequires: %{python_module devel}
BuildRequires: %{python_module Cython}
BuildRequires: %{python_module devel >= 3.8}
BuildRequires: %{python_module numpy}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: libavutil-devel < 5
BuildRequires: libavutil-devel >= 4.3
BuildRequires: pkgconfig
BuildRequires: python-rpm-macros
BuildRequires: (libavutil-devel >= 4.3 with libavutil-devel < 5)
BuildRequires: pkgconfig(libavdevice)
BuildRequires: pkgconfig(libavfilter)
BuildRequires: pkgconfig(libavutil)