You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Document everything backwards incompatible in changelog:
Stream.encode returns a list of packets, instead of a single packet.
AudioFifo and AudioResampler will raise ValueError if input frames
inconsistant pts.
CodecContext.rate has been removed, but proxied to VideoCodecContext.framerate
and AudioCodecContext.sample_rate. The definition is effectively inverted from
the old one (i.e. for 24fps it used to be 1/24 and is now 24/1).
Fractions (e.g. time_base, rate) will be None if they are invalid.
InputContainer.seek and Stream.seek will raise TypeError if given
a float, when previously they converted it from seconds.
The text was updated successfully, but these errors were encountered:
Ripping this from #268 before closing it.
Stream.encode
returns a list of packets, instead of a single packet.AudioFifo
andAudioResampler
will raiseValueError
if input framesinconsistant
pts
.CodecContext.rate
has been removed, but proxied toVideoCodecContext.framerate
and
AudioCodecContext.sample_rate
. The definition is effectively inverted fromthe old one (i.e. for 24fps it used to be
1/24
and is now24/1
).time_base
,rate
) will beNone
if they are invalid.InputContainer.seek
andStream.seek
will raise TypeError if givena float, when previously they converted it from seconds.
The text was updated successfully, but these errors were encountered: