pydub v0.16.0 Release Notes

    • ๐Ÿ‘‰ Make it easier to instantiate pydub.AudioSegment() directly when creating audio segments from raw audio data (without having to write it to a file first)
    • Add pydub.AudioSegment().get_array_of_samples() method which returns the samples which make up an audio segment (you should usually prefer this over pydub.AudioSegment().raw_data)
    • โž• Add pydub.AudioSegment().raw_data property which returns the raw audio data for an audio segment as a bytes (python 3) or a bytestring (python 3)
    • ๐Ÿ‘ Allow users to specify frame rate in pydub.AudioSegment.silent() constructor