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
6 lines
177 B
Python
6 lines
177 B
Python
"""FFmpeg management module"""
|
|
|
|
from .ffmpeg import FFmpegManager, FFmpegError, GPUError, DownloadError
|
|
|
|
__all__ = ['FFmpegManager', 'FFmpegError', 'GPUError', 'DownloadError']
|