From 03330eeb19e9ff216d75f18e0c1d9f947c2fbbcb Mon Sep 17 00:00:00 2001 From: Ramforth Date: Sat, 1 Nov 2025 11:28:43 +0100 Subject: [PATCH] Update USAGE.md to reflect interactive input file prompt --- USAGE.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/USAGE.md b/USAGE.md index b0d0dc2..9d47b61 100644 --- a/USAGE.md +++ b/USAGE.md @@ -37,15 +37,22 @@ Once the setup is complete, you can run the converter script. ### Basic Usage -The script takes an input video file and an optional output directory. +The script takes an input video file and an optional output directory. If the input file is not provided via the command line, the script will prompt you to enter it. ```bash -python -m src.main [-o ] +python -m src.main [path_to_your_input_video_file] [-o ] ``` -* Replace `` with the absolute or relative path to the video file you want to convert. +* Replace `[path_to_your_input_video_file]` with the absolute or relative path to the video file you want to convert. This argument is now optional. * Replace `` with the desired directory for the converted file. If omitted, the converted file will be saved in the same directory as the input file. +**Example (Interactive Input):** + +```bash +python -m src.main +# Script will then prompt: Please enter the path to the input video file: +``` + **Example:** ```bash