You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
756 B
28 lines
756 B
3 years ago
|
#!/usr/bin/env python
|
||
|
import argparse
|
||
|
import json
|
||
|
|
||
|
|
||
|
def main(args):
|
||
|
with open(args.json_file, 'r') as fin:
|
||
|
data_json = json.load(fin)
|
||
|
|
||
|
with open(args.manifest_file, 'w') as fout:
|
||
|
for key, value in data_json['utts'].items():
|
||
|
value['utt'] = key
|
||
|
fout.write(json.dumps(value, ensure_ascii=False))
|
||
|
fout.write("\n")
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
parser = argparse.ArgumentParser(description=__doc__)
|
||
|
parser.add_argument(
|
||
|
'--json-file', type=str, default=None, help="espnet data json file.")
|
||
|
parser.add_argument(
|
||
|
'--manifest-file',
|
||
|
type=str,
|
||
|
default='manifest.train',
|
||
|
help='manifest data json line file.')
|
||
|
args = parser.parse_args()
|
||
|
main(args)
|