25 lines
558 B
Plaintext
25 lines
558 B
Plaintext
# Media Processing Skill Dependencies
|
|
# Python 3.10+ required
|
|
|
|
# No Python package dependencies - uses system binaries
|
|
# Required system tools (install separately):
|
|
# - FFmpeg (video/audio processing)
|
|
# - ImageMagick (image processing)
|
|
|
|
# Testing dependencies (dev)
|
|
pytest>=8.0.0
|
|
pytest-cov>=4.1.0
|
|
pytest-mock>=3.12.0
|
|
|
|
# Installation instructions:
|
|
#
|
|
# Ubuntu/Debian:
|
|
# sudo apt-get install ffmpeg imagemagick
|
|
#
|
|
# macOS (Homebrew):
|
|
# brew install ffmpeg imagemagick
|
|
#
|
|
# Windows:
|
|
# choco install ffmpeg imagemagick
|
|
# or download from official websites
|