Skip to content

Commit

Permalink
Fix EmoV-DB process script description. Fixed #2.
Browse files Browse the repository at this point in the history
  • Loading branch information
agkphysics committed Dec 7, 2021
1 parent 6c9356a commit 21c02f1
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions datasets/EmoV-DB/process.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
"""Process the raw EMOVO dataset.
"""Process the raw EmoV-DB dataset.
This assumes the file structure from the original compressed file:
This assumes the file structure from the original sorted data:
/.../
f1/
*.wav
m1/
*.wav
bea/
Angry/
*.wav
Amused/
*.wav
...
josh/
Angry/
*.wav
...
...
"""

Expand All @@ -31,7 +37,7 @@
@click.argument("input_dir", type=PathlibPath(exists=True, file_okay=False))
@click.option("--resample/--noresample", default=True)
def main(input_dir: Path, resample: bool):
"""Process the EMOVO dataset at location INPUT_DIR and resample
"""Process the EmoV-DB dataset at location INPUT_DIR and resample
audio to 16 kHz 16-bit WAV audio.
"""
paths = list(input_dir.glob("**/*.wav"))
Expand Down

0 comments on commit 21c02f1

Please sign in to comment.