Skip to content

Commit b34f680

Browse files
committed
fix: prettier
1 parent 2d4600a commit b34f680

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/TranscribeService/TranscribeService.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,10 @@ export class TranscribeService {
5252
this.openai = new OpenAI({ ...config });
5353
}
5454

55-
private async convertToMP3(videoUrl: string, tempFile: string): Promise<string[]> {
55+
private async convertToMP3(
56+
videoUrl: string,
57+
tempFile: string
58+
): Promise<string[]> {
5659
try {
5760
console.log(`Converting ${videoUrl} to ${tempFile}`);
5861
execSync(`ffmpeg -i "${videoUrl}" -f mp3 "${tempFile}"`);

0 commit comments

Comments
 (0)