revai-python-sdk icon indicating copy to clipboard operation
revai-python-sdk copied to clipboard

Unexpected item in the results

Open SunHaoRanCN opened this issue 1 year ago • 0 comments

Hi, I'm using Rev_AI for speech transcription,

from rev_ai import apiclient client = apiclient.RevAiAPIClient("...") job = client.submit_job_local_file("...", skip_diarization=True, skip_punctuation=True) job_details = client.get_job_details(job.id) transcript_text = client.get_transcript_text(job.id)

and the result is: "Speaker 0 00:00:00 Um if um capturing um interrupted um words and specific differences um is crucial for um your application" is there any method for ignoring 'speaker0' and '00:00:00', and outputting only the content of the speech?

SunHaoRanCN avatar Jun 06 '23 08:06 SunHaoRanCN