Releases: audeering/audiofile
Releases · audeering/audiofile
Release v1.5.0
- Added:
audiofile.has_video()
,
which probes withmediainfo
if a file contains video.
ReturnsFalse
without probing
for WAV, FLAC, MP3, and OGG files
Release v1.4.0
- Added:
audiofile.write()
can now create MP3 files - Changed:
audiofile
does now usesoundfile
to read MP3 files
(2x speed increase),
and to access metadata of MP3 files
(up to 1000x speed increase) - Changed: depend on
soundfile>=0.12.1
- Changed: updated benchmark pages in documentation
to latest versions of tested libraries - Fixed: depend on
audmath>=1.3.0
Release v1.3.2
- Added: support for Python 3.12
Release v1.3.1
- Added:
pedalboard
to the benchmark section of the documentation - Changed: use Python 3.10 when benchmarking different libraries
- Fixed: avoid deprecation warning by replacing
pkg_resources
internally withimportlib.metadata
- Removed:
aubio
from the benchmark section of the documentation
Release v1.3.0
- Changed: evenly round
offset
andduration
after converting to samples
inaudiofile.read()
andaudiofile.convert_to_wav()
for SND files - Fix:
offset
andduration
now behave the same
independent of the incoming file format
Release v1.2.1
- Fixed: missing
pytest
requirement
indocs/requirements.txt
Release v1.1.1
- Added: support for Python 3.11
- Added: support for Python 3.10
- Changed: split API documentation into sub-pages
for each function - Removed: dependency on
pysox
Release v1.1.0
- Changed: use
ffmpeg
ormediainfo
ifsox
binary is missing
instead of raising an error - Changed: improve
FileNotFoundError
message
whenffmpeg
ormediainfo
are required,
but not installed - Fixed: always raise
RuntimeError
for broken files or missing files - Fixed: mention expected
FileNotFoundError
whenffmpeg
ormediainfo
are required,
but not installed - Fixed: use
soundfile
for converting WAV, FLAC, OGG files
withaudiofile.convert_to_wav()
Release v1.0.3
- Removed: Python 3.6 support
Release v1.0.2
- Fixed: raise
RuntimeError
for broken or empty non SND files