mirror of
https://github.com/rhasspy/piper-sample-generator.git
synced 2026-08-27 18:15:58 -04:00
Require sample rate in augment
This commit is contained in:
parent
ded9350eaf
commit
c9d824c0e2
1 changed files with 1 additions and 1 deletions
|
|
@ -15,7 +15,7 @@ def main() -> None:
|
|||
parser = argparse.ArgumentParser()
|
||||
parser.add_argument("input_dir")
|
||||
parser.add_argument("output_dir")
|
||||
parser.add_argument("--sample-rate", type=int)
|
||||
parser.add_argument("--sample-rate", type=int, required=True)
|
||||
args = parser.parse_args()
|
||||
|
||||
impulses = list((_DIR / "impulses").glob("*.wav"))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue