mirror of
https://github.com/YusufB5/ASCILINE.git
synced 2026-06-17 22:35:13 +02:00
fix: resolve video path for single video argument (videos/ subfolder lookup)
This commit is contained in:
parent
5fad7c5aa9
commit
2108a34bb7
1 changed files with 1 additions and 1 deletions
|
|
@ -101,7 +101,7 @@ def build_queue(args) -> list[dict]:
|
|||
return load_folder(args.folder, args.mode, args.vol)
|
||||
|
||||
# Legacy: single video argument
|
||||
return [{"video": args.video, "mode": args.mode, "vol": args.vol}]
|
||||
return [{"video": resolve_video_path(args.video), "mode": args.mode, "vol": args.vol}]
|
||||
|
||||
|
||||
# ── APP STATE ──────────────────────────────────────────────
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue