1
0

Add skip-audio mode and resilient merge handling

This commit is contained in:
2026-04-02 13:25:54 +02:00
parent a0a66264d2
commit 08ebab6348
3 changed files with 56 additions and 21 deletions

View File

@@ -24,7 +24,10 @@ Docker (GPU):
```bash
cp .env.example .env
docker build -t content-generation:latest .
docker run --rm --gpus all --env-file .env -v "$(pwd)":/app -w /app content-generation:latest
docker run --rm --gpus all --env-file .env \
-v "$(pwd)":/app \
-v "$HOME/.cache/huggingface":/root/.cache/huggingface \
-w /app content-generation:latest
```
First run (skip S3 upload):
@@ -36,7 +39,11 @@ python run_video_pipeline.py --skip-s3-upload
Docker first run (skip S3 upload):
```bash
docker run --rm --gpus all --env-file .env -v "$(pwd)":/app -w /app content-generation:latest \
docker run --rm --gpus all --env-file .env \
-v "$(pwd)":/app \
-v "$HOME/.cache/huggingface":/root/.cache/huggingface \
-w /app \
content-generation:latest \
python run_video_pipeline.py --skip-s3-upload
```
@@ -136,6 +143,7 @@ docker build -t content-generation:latest --build-arg INSTALL_OPTIONAL_ATTENTION
docker run --rm --gpus all \
--env-file .env \
-v "$(pwd)":/app \
-v "$HOME/.cache/huggingface":/root/.cache/huggingface \
-w /app \
content-generation:latest
```
@@ -146,6 +154,7 @@ docker run --rm --gpus all \
docker run --rm --gpus all \
--env-file .env \
-v "$(pwd)":/app \
-v "$HOME/.cache/huggingface":/root/.cache/huggingface \
-w /app \
content-generation:latest \
python run_video_pipeline.py --skip-s3-upload --log-level DEBUG