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
I've been using this excellent on my Mac for months. Now, suddenly, files that previously ran through my scripts just fine throw.
File "/Users/ini/parsonos/palaba-server/palaba/transcription.py", line 238, in transcribe_audio
audio_chunks = _chunk_audio(audio_file_path, tmp_path)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Users/ini/parsonos/palaba-server/palaba/transcription.py", line 127, in _chunk_audio
sound_file.seek(offset)
File "/Users/ini/parsonos/palaba-server/env/lib/python3.11/site-packages/soundfile.py", line 802, in seek
_error_check(self._errorcode)
File "/Users/ini/parsonos/palaba-server/env/lib/python3.11/site-packages/soundfile.py", line 1407, in _error_check
raise LibsndfileError(err, prefix=prefix)
soundfile.LibsndfileError: Internal psf_fseek() failed.
Update: I identified the issue as an invalid float argument to seek. I suggest a check to validate that arguments are in fact int. 🤓
The text was updated successfully, but these errors were encountered:
Ruben-Kruepper
changed the title
Soundfile broken on MacOS 15
Validate argument for seek is integer.
Sep 19, 2024
I've been using this excellent on my Mac for months. Now, suddenly, files that previously ran through my scripts just fine throw.
Update: I identified the issue as an invalid float argument to seek. I suggest a check to validate that arguments are in fact
int
. 🤓The text was updated successfully, but these errors were encountered: