diff --git a/arty.yml b/arty.yml index 0a27070..068f5aa 100644 --- a/arty.yml +++ b/arty.yml @@ -139,11 +139,23 @@ scripts: htop \ tmux \ net-tools \ - davfs2 + davfs2 \ + ffmpeg \ + libavcodec-dev \ + libavformat-dev \ + libavutil-dev \ + libswscale-dev echo "" 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: | echo "=========================================" echo " Setting Up Python Environment"