Skip to content

Commit

Permalink
Update TranscribeService.java
Browse files Browse the repository at this point in the history
  • Loading branch information
mcasperson committed Jan 30, 2022
1 parent 9af3441 commit 308e8f3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public String transcribe(final byte[] file, final String language)
}
}

Path saveFileToDisk(final byte[] file) throws IOException {
private Path saveFileToDisk(final byte[] file) throws IOException {
final Path tempFile = Files.createTempFile("", ".webm");
Files.write(tempFile, file);
return tempFile;
Expand Down

0 comments on commit 308e8f3

Please sign in to comment.