docs: fix source parameter documentation for all commands in README.md

This commit is contained in:
Emmanuel BENOîT 2025-04-11 12:08:56 +02:00
parent 9aa115eb81
commit 2bf86a983d
Signed by: Emmanuel BENOîT
SSH key fingerprint: SHA256:l7PFUUF5TCDsvYeQC9OnTNz08dFY7Fvf4Hv3neIqYpg

View file

@ -33,7 +33,7 @@ Maps text from one file to another with a time offset.
``` ```
MAP <text_source> <text_start> <time_start> <count> MAP <text_source> <text_start> <time_start> <count>
``` ```
- `<text_source>`: The source SRT file for text (`srt1` or `srt2`). - `<text_source>`: The source SRT file for text, specified as `1` or `2`.
- `<text_start>`: The starting index of the text to map. - `<text_start>`: The starting index of the text to map.
- `<time_start>`: The starting index of the time to map. - `<time_start>`: The starting index of the time to map.
- `<count>`: The number of subtitles to map. - `<count>`: The number of subtitles to map.
@ -45,7 +45,7 @@ Synchronizes subtitles between files.
``` ```
SYNC <text_source> <text_index> <time_index> SYNC <text_source> <text_index> <time_index>
``` ```
- `<text_source>`: The source SRT file for text (`srt1` or `srt2`). - `<text_source>`: The source SRT file for text, specified as `1` or `2`.
- `<text_index>`: The index of the text to synchronize. - `<text_index>`: The index of the text to synchronize.
- `<time_index>`: The index of the time to synchronize. - `<time_index>`: The index of the time to synchronize.
@ -56,7 +56,7 @@ Puts a specific text at a given index.
``` ```
PUT <source> <index> <text> PUT <source> <index> <text>
``` ```
- `<source>`: The source SRT file (`srt1` or `srt2`). - `<source>`: The source SRT file, specified as `1` or `2`.
- `<index>`: The index where the text should be placed. - `<index>`: The index where the text should be placed.
- `<text>`: The text to insert. - `<text>`: The text to insert.