Commit e72cf052678044c365d792cca2f2aa5db3034324
1 parent
1c1f0f29a7
Exists in
master
Few useless modifications
Showing 1 changed file with 0 additions and 9 deletions Side-by-side Diff
volia/data.py
1 | 1 | import argparse |
2 | -import sys | |
3 | - | |
4 | 2 | from utils import SubCommandRunner |
5 | - | |
6 | 3 | import core.data |
7 | 4 | |
8 | 5 | |
9 | - | |
10 | - | |
11 | 6 | def filter_file(file, filter, outfile): |
12 | 7 | file_path = file |
13 | 8 | filter_path = filter |
14 | 9 | |
15 | 10 | |
... | ... | @@ -17,13 +12,9 @@ |
17 | 12 | with open(outfile, "w") as out: |
18 | 13 | for id_ in filter_data: |
19 | 14 | core.data.write_line(id_, file_data[id_], out) |
20 | - | |
21 | - | |
22 | 15 | |
23 | - | |
24 | 16 | |
25 | 17 | def convert(file, type_from, type): |
26 | - | |
27 | 18 | pass |
28 | 19 | |
29 | 20 | def utt2dur(wavscp: str, outfile: str): |