This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # | |
| # --- SOTA Preprocessing Bootstrap Script for vast.ai (STAGE 1 - v7) --- | |
| # TARGET: Ubuntu 22.04 container/VM on VAST | |
| # PROOF: Emits tool versions, filter checks, frame counts, and pass/fail markers. | |
| # | |
| set -euo pipefail | |
| export DEBIAN_FRONTEND=noninteractive | |
| export PYTHONUNBUFFERED=1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # | |
| # --- SOTA Preprocessing Bootstrap Script for vast.ai (STAGE 1) --- | |
| # | |
| # TEMPLATE: Ubuntu 22.04 VM | |
| # | |
| # This script will: | |
| # 1. Install all dependencies (ffmpeg, Python, VapourSynth, and SOTA plugins). | |
| # 2. Wait for you to upload "in.mp4" to /workspace/. | |
| # 3. Automatically run the full preprocessing pipeline (all on CPU). |