From 95358ff18d9d50b01e4ce2fdd78d6ab478e0e764 Mon Sep 17 00:00:00 2001 From: Karchnu Date: Tue, 6 Apr 2021 23:03:02 +0200 Subject: [PATCH] fixes other english mistakes --- README.md | 4 ++-- get-tracks.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e9a76b1..02aa97b 100644 --- a/README.md +++ b/README.md @@ -28,11 +28,11 @@ The `time-file` must have this format: * **SIMULATION**: if non empty do not invoke ffmpeg * **FORMAT** [mp3,ogg,opus,…]: for the song file format -* **NONUMBER**: if equals 1, do not write song number +* **NONUMBER**: if equals to 1, do not write song number * **SEPARATOR**: (default: ' - '), write song number, with this separator example with SEPARATOR='_': song names will be 01_song.opus 02_song.opus… * **VERBOSITY** [0-3] (default: 1)\ - verbosity 0: no output exept errors from ffmpeg\ + verbosity 0: no output except errors from ffmpeg\ verbosity 1: simple indications on the current track being extracted\ verbosity 2: print actual ffmpeg commands the script currently runs diff --git a/get-tracks.sh b/get-tracks.sh index dc67318..9d9fbce 100755 --- a/get-tracks.sh +++ b/get-tracks.sh @@ -57,7 +57,7 @@ to_ascii(){ to_hex_one_column | # Convert input into hexadecimal and a single byte per line. regroup_lines | # Required to easily match multi-byte characters. simple_quote | # Convert "’" to "'". - replace_slashes | # Replaces / by ' - ', since it isn't a valid filename character. + replace_slashes | # Replace / by ' - ', since it isn't a valid filename character. remove_multibyte_characters | # Remove non ascii values. from_hex # Convert back from hex. }