Document backwards incompatibilities
Ripping this from #268 (closed) before closing it.
-
Document everything backwards incompatible in changelog: -
Stream.encodereturns a list of packets, instead of a single packet. -
AudioFifoandAudioResamplerwill raiseValueErrorif input frames inconsistantpts. -
CodecContext.ratehas been removed, but proxied toVideoCodecContext.framerateandAudioCodecContext.sample_rate. The definition is effectively inverted from the old one (i.e. for 24fps it used to be1/24and is now24/1). -
Fractions (e.g. time_base,rate) will beNoneif they are invalid. -
InputContainer.seekandStream.seekwill raise TypeError if given a float, when previously they converted it from seconds.
-