I need the final .tcv file and also the .json file saving the partial results.
I used the following command to get the file MyAudoFileName.wav transcribed and the results saved in MyAudioFileName.json.
spx recognize --file MyAudioFileName.wav --output batch file MyAudioFileName.json
I have a lot audio files, and I saw the batch command:
spx recognize --files C:\your_wav_file_dir*.wav --output file C:\output_dir\speech_output.tsv --threads 10
For each audio file, how can I get its corresponding .json file in this batch mode? I did not find it in the doc for batch process.
Speech CLI batch operations: https://learn.microsoft.com/en-us/azure/cognitive-services/speech-service/spx-batch-operations
Could you please tell me how to get the .json files for all the audio files in the batch mode?
Thanks.