File tree 5 files changed +14
-6
lines changed 5 files changed +14
-6
lines changed Original file line number Diff line number Diff line change @@ -173,3 +173,14 @@ variables is deprecated. Additional fonts may be registered using
173
173
``matplotlib.compat ``
174
174
~~~~~~~~~~~~~~~~~~~~~
175
175
This module is deprecated.
176
+
177
+ AVConv animation writer deprecated
178
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
179
+ The ``AVConvBase ``, ``AVConvWriter `` and ``AVConvFileWriter `` classes, and the
180
+ associated ``animation.avconv_path `` and ``animation.avconv_args `` rcParams are
181
+ deprecated.
182
+
183
+ Debian 8 (2015, EOL 06/2020) and Ubuntu 14.04 (EOL 04/2019) were the
184
+ last versions of Debian and Ubuntu to ship avconv. It remains possible
185
+ to force the use of avconv by using the ffmpeg-based writers with
186
+ :rc: `animation.ffmpeg_path ` set to "avconv".
Original file line number Diff line number Diff line change @@ -609,6 +609,8 @@ def gen_candidates():
609
609
# listed in the rcParams (not included in _all_deprecated).
610
610
# Values are tuples of (version,)
611
611
_deprecated_remain_as_none = {
612
+ 'animation.avconv_path' : ('3.3' ,),
613
+ 'animation.avconv_args' : ('3.3' ,),
612
614
}
613
615
614
616
Original file line number Diff line number Diff line change @@ -644,6 +644,7 @@ def _args(self):
644
644
645
645
646
646
# Base class of avconv information. AVConv has identical arguments to FFMpeg.
647
+ @cbook .deprecated ('3.3' )
647
648
class AVConvBase (FFMpegBase ):
648
649
"""
649
650
Mixin class for avconv output.
Original file line number Diff line number Diff line change @@ -478,9 +478,6 @@ animation.frame_format: png # Controls frame format used by temp files
478
478
animation.ffmpeg_path: ffmpeg # Path to ffmpeg binary. Without full path
479
479
# $PATH is searched
480
480
animation.ffmpeg_args: # Additional arguments to pass to ffmpeg
481
- animation.avconv_path: avconv # Path to avconv binary. Without full path
482
- # $PATH is searched
483
- animation.avconv_args: # Additional arguments to pass to avconv
484
481
animation.convert_path: convert # Path to ImageMagick's convert binary.
485
482
# On Windows use the full path since convert
486
483
# is also the name of a system tool.
Original file line number Diff line number Diff line change 744
744
#animation.ffmpeg_path : ffmpeg ## Path to ffmpeg binary. Without full path
745
745
## $PATH is searched
746
746
#animation.ffmpeg_args : ## Additional arguments to pass to ffmpeg
747
- #animation.avconv_path : avconv ## Path to avconv binary. Without full path
748
- ## $PATH is searched
749
- #animation.avconv_args : ## Additional arguments to pass to avconv
750
747
#animation.convert_path : convert ## Path to ImageMagick's convert binary.
751
748
## On Windows use the full path since convert
752
749
## is also the name of a system tool.
You can’t perform that action at this time.
0 commit comments