audioread icon indicating copy to clipboard operation
audioread copied to clipboard

cross-library (GStreamer + Core Audio + MAD + FFmpeg) audio decoding for Python

Results 44 audioread issues
Sort by recently updated
recently updated
newest added

@sampsyo WIP towards #71 and #72 . On the path of adding seeking, I did a variety of things: - I added `block_samples` into `audio_open`. It works in `macca` and...

The python audioop.lin2lin will complain if the length of data can not be divided by old_width, and it's not that convenient to check the length of the audio before using...

This is @jksinton's work on making the FFmpeg backend work on data from a stream instead of from disk. Addresses #34 and #35. I changed around the top-level interface a...

Hello! This is my first time posting an issue, so please cut me some slack if I'm not following some protocol! I was trying to use python's `librosa` package on...

The docs would be *much* more useful to me if this introductory sample ``` with audioread.audio_open(filename) as f: print(f.channels, f.samplerate, f.duration) for buf in f: do_something(buf) ``` included some notion...

Version: 2.1.9 It is possible to fool audioread into determining there are 0 channels in the audio file when it does actually have an audio channel. This occurs when metadata...

Hello, I'm getting this threading error, after upgrading to the latest version. This is currently my full stack trace ![Schermata 2021-12-01 alle 12 33 11](https://user-images.githubusercontent.com/163333/144229785-e1e75923-f5f3-4291-9e46-fe1c03508c1a.png)

Hi, thanks for this very useful library! I was looking into `ffdec.py` since I need faster loading of mp3 and m4a files. I believe that the module could be improved...

Hello, When using the script decode.py to decode an mp3 into wav, the .wav file generated has 33ms of silence prepend at the start. Thus the original .mp3 and the...

Audioread version: 2.1.9 When decoding an MP3 file using the GStreamer backend, pitch gets disorted. See example attached, which has the original MP3 file, a WAV file decoded by the...