#!/usr/bin/env bash
set -euo pipefail
PROJECT=/data/video-pipeline/Youtube-Video-Maker/Project/05062026-001-Phung-Hung
cd /data/video-pipeline/Youtube-Video-Maker
for step in   scripts_run_step_07_tts_v2.py   scripts_run_step_08_compose_tts.py   scripts_run_step_09_probe_audio.py   scripts_run_step_10_asr_master.py   scripts_run_step_11_map_subtitles.py   scripts_run_step_12_clamp_subtitles.py   scripts_run_step_13_split_parts.py   scripts_run_step_14_render_parts.py   scripts_run_step_15_concat_parts.py   scripts_run_step_16_qa_main_story.py   scripts_run_step_17_create_intro_segmented.py   scripts_run_step_18_final_package.py   scripts_run_step_19_final_qa_info.py; do
  echo "==== RUN $step ===="
  ./.venv/bin/python "$PROJECT/$step"
done
