Incomplete transcript when the recording has long pause before conversation resume again

Wanyee Lee 20 Reputation points
2025-06-13T08:11:03.1266667+00:00

I am having problem to have complete transcription when my recordings have trends like below:

  1. There a long silent in between the conversation, i.e., there is conversation from minute 1-2 then a long pause from min2-min10 then there is conversation again from min11 - min13 and so on so forth

I am using Azure batch transcription for Thai and the transcript generated only consist of the conversation from minute 1-2 and then it will not generate the transcript for rest of the conversation

What should I do to fix it? Please advise, thanks in advance!

Azure AI Speech
Azure AI Speech
An Azure service that integrates speech processing into apps and services.
2,063 questions
{count} votes

Accepted answer
  1. Danny Dang 85 Reputation points Independent Advisor
    2025-06-16T07:19:40.9333333+00:00

    Hi Wanyee,

    Thank you for contacting Microsoft Q&A Forum.

    The issue you're experiencing with incomplete transcriptions due to long pauses in your recordings is a known limitation. Currently, Azure Batch Transcription does not have any parameter to configure silence time.

    Steps to Fix:

    Preprocess Your Audio:

    Consider preprocessing your audio files to remove or reduce long pauses before submitting them for transcription. This can help ensure that the entire conversation is captured in the transcript.

    Here is a sample ffmpg

    ffmpeg -i input_audio.wav -af silenceremove=start_periods=1:start_duration=1:start_threshold=-30dB:stop_periods=1:stop_duration=1:stop_threshold=-30dB output_trimmed.wav
    
    • start_periods=1: Begins trimming after one silent period.
    • start_duration=1: Silence must last at least 1 second to be trimmed.
    • start_threshold=-30dB: Anything quieter than -30dB is considered silence.
    • stop_periods=1, stop_duration=1, stop_threshold=-30dB: Same logic applies to the end of silent segments.

    Reference:

    If I have answered your question, please accept this answer as a token of appreciation and don't forget to give a thumbs up for "Was it helpful"!

    Best Regards,


0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.