53f37b17ee
- 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).
Dirk Mueller2023-12-05 17:36:48 +00:00
9abc9f3213
- Update to 8.1.0: * Update FFmpeg to 4.3.2 for the binary wheels. * Provide binary wheels for Python 3.10 (:issue:820). * Stop providing binary wheels for end-of-life Python 3.6. * Fix args order in Frame.__repr__ (:issue:749). * Fix documentation to remove unavailable QUIET log level (:issue:719). * Expose codec_context.codec_tag (:issue:741). * Add example for encoding with a custom PTS (:issue:725). * Use av_packet_rescale_ts in Packet._rebase_time() (:issue:737). * Do not hardcode errno values in test suite (:issue:729). * Use av_guess_format for output container format (:issue:691). * Fix setting CodecContext.extradata (:issue:658, :issue:740). * 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).
Steve Kowalik2022-01-11 03:18:02 +00:00
24b0466e6e
Accepting request 874687 from devel:languages:python
Richard Brown
2021-02-25 17:27:11 +00:00
8aced7dd0c
Accepting request 874686 from home:bnavigator:branches:devel:languages:python
Dirk Mueller2021-02-23 19:00:13 +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).
Steve Kowalik2020-06-24 01:30:22 +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)
Steve Kowalik2020-02-24 01:50:14 +00:00