Skip to content

Commit

Permalink
chore(transcription): raise timeout some more
Browse files Browse the repository at this point in the history
  • Loading branch information
lutangar committed Jun 11, 2024
1 parent ab56df9 commit 694efec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ describe('Open AI Whisper transcriber', function () {
})

it('May transcribe a media file using a local PyTorch model', async function () {
this.timeout(3 * 1000 * 60)
this.timeout(4 * 1000 * 60)
await transcriber.transcribe({
mediaFilePath: frVideoPath,
model: await TranscriptionModel.fromPath(join(modelsDirectory, 'tiny.pt')),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ describe('Whisper CTranslate2 transcriber', function () {
})

it('Should produce a text transcript similar to openai-whisper implementation', async function () {
this.timeout(5 * 1000 * 60)
this.timeout(6 * 1000 * 60)
const transcribeArgs: WhisperTranscribeArgs = {
mediaFilePath: frVideoPath,
language: 'fr',
Expand Down

0 comments on commit 694efec

Please sign in to comment.