Files
notecast/utils/exceptions.py
svlqd 3d48f473b0 new structure for transcription engine
- found problems with mps
- integrated jinja2 templates for rendering (.tex?)
- raw ui & bad structure
2026-02-24 02:58:28 +03:00

14 lines
320 B
Python

# not sure, but why not?
class AudioPreparationError(Exception):
"""Base exception for audio preparation"""
pass
class ResamplingError(AudioPreparationError):
"""Raises when resampling fails"""
pass
class DownmixingError(AudioPreparationError):
"""Raises when downmixing to mono fails"""
pass