Whisper node API started throwing ECONNRESET for ~10MB m4a files

Today I started experiencing this API error for ~10MB .m4a files. It used to be working for such files.

APIConnectionError: Connection error.
    at OpenAI.makeRequest (/path/to/node_modules/openai/src/core.ts:425:13)
    at processTicksAndRejections (node:internal/process/task_queues:95:5) {
  status: undefined,
  headers: undefined,
  error: undefined,
  code: undefined,
  param: undefined,
  type: undefined,
  cause: FetchError: request to https://api.openai.com/v1/audio/transcriptions failed, reason: read ECONNRESET
      at ClientRequest.<anonymous> (/path/to/node_modules/node-fetch/lib/index.js:1501:11)
      at ClientRequest.emit (node:events:519:28)
      at ClientRequest.emit (node:domain:488:12)
      at TLSSocket.socketErrorListener (node:_http_client:492:9)
      at TLSSocket.emit (node:events:531:35)
      at TLSSocket.emit (node:domain:488:12)
      at emitErrorNT (node:internal/streams/destroy:169:8)
      at emitErrorCloseNT (node:internal/streams/destroy:128:3)
      at processTicksAndRejections (node:internal/process/task_queues:82:21) {
    type: 'system',
    errno: 'ECONNRESET',
    code: 'ECONNRESET'
  }
}

The Whipser API works for other audio files though. It’s hard to debug without further information.

Is this a known issue?

Is there a way for me to further debug?

Thank you in advance!