SHA256
15
0
forked from pool/python-av
Commit Graph

13 Commits

Author SHA256 Message Date
12e3ba2f90 Accepting request 816734 from devel:languages:python
- Update to 8.0.2:
  * v8.0.2
    + Minor:
      - Enable GnuTLS support in the FFmpeg build used for binary wheels (:issue:`675`).
      - Make binary wheels compatible with Mac OS X 10.9+ (:issue:`662`).
      - Drop Python 2.x buffer protocol code.
      - Remove references to previous repository location.
  * v8.0.1
    + Minor:
      - Enable additional FFmpeg features in the binary wheels.
      - Use os.fsencode for both input and output file names (:issue:`600`).
  * v8.0.0
    + Major:
      - Drop support for Python 2 and Python 3.4.
      - Provide binary wheels for Linux, Mac and Windows.
    + Minor:
      - Remove shims for obsolete FFmpeg versions (:issue:`588`).
      - Add yuvj420p format for :meth:`VideoFrame.from_ndarray` and :meth:`VideoFrame.to_ndarray` (:issue:`583`).
      - Add support for palette formats in :meth:`VideoFrame.from_ndarray` and :meth:`VideoFrame.to_ndarray` (:issue:`601`).
      - 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`).

OBS-URL: https://build.opensuse.org/request/show/816734
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-av?expand=0&rev=6
2020-06-24 13:49:14 +00:00
7610baf4ba - Update to 8.0.2:
* v8.0.2
    + Minor:
      - Enable GnuTLS support in the FFmpeg build used for binary wheels (:issue:`675`).
      - Make binary wheels compatible with Mac OS X 10.9+ (:issue:`662`).
      - Drop Python 2.x buffer protocol code.
      - Remove references to previous repository location.
  * v8.0.1
    + Minor:
      - Enable additional FFmpeg features in the binary wheels.
      - Use os.fsencode for both input and output file names (:issue:`600`).
  * v8.0.0
    + Major:
      - Drop support for Python 2 and Python 3.4.
      - Provide binary wheels for Linux, Mac and Windows.
    + Minor:
      - Remove shims for obsolete FFmpeg versions (:issue:`588`).
      - Add yuvj420p format for :meth:`VideoFrame.from_ndarray` and :meth:`VideoFrame.to_ndarray` (:issue:`583`).
      - Add support for palette formats in :meth:`VideoFrame.from_ndarray` and :meth:`VideoFrame.to_ndarray` (:issue:`601`).
      - 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`).

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-av?expand=0&rev=12
2020-06-24 01:30:22 +00:00
331c08d634 Accepting request 809808 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/809808
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-av?expand=0&rev=5
2020-06-09 22:42:55 +00:00
Tomáš Chvátal
9da95ed465 Accepting request 809562 from home:pgajdos:python
submit

OBS-URL: https://build.opensuse.org/request/show/809562
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-av?expand=0&rev=10
2020-05-28 07:32:29 +00:00
82b511dc93 Accepting request 787081 from devel:languages:python
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/787081
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-av?expand=0&rev=4
2020-03-22 13:17:35 +00:00
Tomáš Chvátal
0745214851 - Fix build without py2 available
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-av?expand=0&rev=8
2020-03-14 08:45:20 +00:00
be0d664eef Accepting request 778637 from devel:languages:python
- Update version to 7.0.1:
  + Major:
    * Drop support for FFmpeg < 4.0. (:issue:`559`)
    * Introduce per-error exceptions, and mirror the builtin exception heirarchy. It is recommended to examine your error handling code, as common FFmpeg errors will result in ValueError baseclasses now. (:issue:`563`)
    * Data stream's encode and decode return empty lists instead of none allowing common API use patterns with data streams.
    * Remove whence parameter from :meth:`InputContainer.seek` as non-time seeking doesn't seem to actually be supported by any FFmpeg formats.
   + Minor:
     * Users can disable the logging system to avoid lockups in sub-interpreters. (:issue:`545`)
     * Filters support audio in general, and a new :meth:`.Graph.add_abuffer`. (:issue:`562`)
     * :func:`av.open` supports timeout parameters. (:issue:`480` and :issue:`316`)
     * Expose :attr:`Stream.base_rate` and :attr:`Stream.guessed_rate`. (:issue:`564`)
     * :meth:`.VideoFrame.reformat` can specify interpolation.
     * Expose many sets of flags.
   + Fixes:
     * Removed deprecated AV_FRAME_DATA_QP_TABLE_* enums. (:issue:`607`)
     * Fix typing in :meth:`.CodecContext.parse` and make it more robust.
     * Fix wrong attribute in ByteSource. (:issue:`340`)
     * Remove exception that would break audio remuxing. (:issue:`537`)
     * Log messages include last FFmpeg error log in more helpful way.
     * Use AVCodecParameters so FFmpeg doesn't complain. (:issue:`222`)

OBS-URL: https://build.opensuse.org/request/show/778637
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-av?expand=0&rev=3
2020-02-24 14:54:20 +00:00
d25f22e47a - Update version to 7.0.1:
+ Major:
    * Drop support for FFmpeg < 4.0. (:issue:`559`)
    * Introduce per-error exceptions, and mirror the builtin exception heirarchy. It is recommended to examine your error handling code, as common FFmpeg errors will result in ValueError baseclasses now. (:issue:`563`)
    * Data stream's encode and decode return empty lists instead of none allowing common API use patterns with data streams.
    * Remove whence parameter from :meth:`InputContainer.seek` as non-time seeking doesn't seem to actually be supported by any FFmpeg formats.
   + Minor:
     * Users can disable the logging system to avoid lockups in sub-interpreters. (:issue:`545`)
     * Filters support audio in general, and a new :meth:`.Graph.add_abuffer`. (:issue:`562`)
     * :func:`av.open` supports timeout parameters. (:issue:`480` and :issue:`316`)
     * Expose :attr:`Stream.base_rate` and :attr:`Stream.guessed_rate`. (:issue:`564`)
     * :meth:`.VideoFrame.reformat` can specify interpolation.
     * Expose many sets of flags.
   + Fixes:
     * Removed deprecated AV_FRAME_DATA_QP_TABLE_* enums. (:issue:`607`)
     * Fix typing in :meth:`.CodecContext.parse` and make it more robust.
     * Fix wrong attribute in ByteSource. (:issue:`340`)
     * Remove exception that would break audio remuxing. (:issue:`537`)
     * Log messages include last FFmpeg error log in more helpful way.
     * Use AVCodecParameters so FFmpeg doesn't complain. (:issue:`222`)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-av?expand=0&rev=6
2020-02-24 01:50:14 +00:00
d38ed81968 Accepting request 718541 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/718541
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-av?expand=0&rev=2
2019-07-26 10:41:50 +00:00
Tomáš Chvátal
09502e97c2 Accepting request 718539 from home:pgajdos
- version update to 6.2.0
  * Allow :meth:`av.open` to be used as a context manager.
  * Fix compatibility with PyPy, the full test suite now passes. (:issue:`130`)
  * Add :meth:`.InputContainer.close` method. (:issue:`317`, :issue:`456`)
  * Ensure audio output gets flushes when using a FIFO. (:issue:`511`)
  * Make Python I/O buffer size configurable. (:issue:`512`)
  * Make :class:`.AudioFrame` and :class:`VideoFrame` more garbage-collector
    friendly by breaking a reference cycle. (:issue:`517`)

OBS-URL: https://build.opensuse.org/request/show/718539
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-av?expand=0&rev=4
2019-07-25 12:22:45 +00:00
f0c53bbd6a Accepting request 694771 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/694771
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-av?expand=0&rev=1
2019-05-13 12:48:28 +00:00
Tomáš Chvátal
6b3bbfc4a5 - Fix the spec file to adhere requirements
- Do not use service and fetch files from pypi

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-av?expand=0&rev=2
2019-04-16 10:23:58 +00:00
Tomáš Chvátal
1d01cf85b7 Accepting request 694711 from system:homeautomation:home-assistant
initial package version, also used by antlarr, so submitting to devel project

OBS-URL: https://build.opensuse.org/request/show/694711
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-av?expand=0&rev=1
2019-04-16 10:04:47 +00:00