mirror of
https://github.com/pacnpal/Pac-cogs.git
synced 2025-12-20 02:41:06 -05:00
- Created ffmpeg package with specialized modules - Improved Docker compatibility using /tmp - Better permission handling - More robust error handling - Separated concerns for easier maintenance - Simplified imports through __init__.py
14 lines
292 B
Python
14 lines
292 B
Python
"""FFmpeg-related exceptions"""
|
|
|
|
class FFmpegError(Exception):
|
|
"""Base exception for FFmpeg-related errors"""
|
|
pass
|
|
|
|
class GPUError(FFmpegError):
|
|
"""Raised when GPU operations fail"""
|
|
pass
|
|
|
|
class DownloadError(FFmpegError):
|
|
"""Raised when FFmpeg download fails"""
|
|
pass
|