feat: add FFmpeg dependencies to system packages
All checks were successful
Build and Push RunPod Docker Image / build-and-push (push) Successful in 14s
All checks were successful
Build and Push RunPod Docker Image / build-and-push (push) Successful in 14s
Add FFmpeg and its development libraries to setup/system-packages script: - ffmpeg: Main FFmpeg executable - libavcodec-dev: Audio/video codec library - libavformat-dev: Audio/video format library - libavutil-dev: Utility library for FFmpeg - libswscale-dev: Video scaling library These libraries are required for torchcodec to function properly with DiffRhythm audio generation. Also added FFmpeg version verification after installation. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
14
arty.yml
14
arty.yml
@@ -139,11 +139,23 @@ scripts:
|
|||||||
htop \
|
htop \
|
||||||
tmux \
|
tmux \
|
||||||
net-tools \
|
net-tools \
|
||||||
davfs2
|
davfs2 \
|
||||||
|
ffmpeg \
|
||||||
|
libavcodec-dev \
|
||||||
|
libavformat-dev \
|
||||||
|
libavutil-dev \
|
||||||
|
libswscale-dev
|
||||||
|
|
||||||
echo ""
|
echo ""
|
||||||
echo "✓ System packages installed successfully"
|
echo "✓ System packages installed successfully"
|
||||||
|
|
||||||
|
# Verify FFmpeg installation
|
||||||
|
if ffmpeg -version > /dev/null 2>&1; then
|
||||||
|
echo "✓ FFmpeg installed: $(ffmpeg -version | head -1 | cut -d' ' -f3)"
|
||||||
|
else
|
||||||
|
echo "❌ WARNING: FFmpeg not found"
|
||||||
|
fi
|
||||||
|
|
||||||
setup/python-env: |
|
setup/python-env: |
|
||||||
echo "========================================="
|
echo "========================================="
|
||||||
echo " Setting Up Python Environment"
|
echo " Setting Up Python Environment"
|
||||||
|
|||||||
Reference in New Issue
Block a user