Transcribing video and changing output #820
Replies: 6 comments
-
I did find this tool: https://github.com/dsymbol/decipher It convert the files to AAC by default it seems. Is there such a thing as because this is a third party tool it might not be as updated as using Whisper directly? |
Beta Was this translation helpful? Give feedback.
-
There is no command line argument to omit .txt output currently. This is where text files are written (and further down VTT and SRT). Line 313 in 28769fc
whisper can accept containers of video+audio directly, since it uses ffmpeg under the hood. So if your video file is .mp4 for example, just use whisper on that. If for some reason that doesn't work, you can always extract audio in a script using ffmpeg, eg.
Keep using Line 78 in 02aa851 |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
Yes, or just comment out the parts you don't want (in case you want them back later) 👍 |
Beta Was this translation helpful? Give feedback.
-
I did feed it an MP4 file. It didn't work. It worked with decipher though. |
Beta Was this translation helpful? Give feedback.
-
--output_format srt txt |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I am very new to programming and don't know Python so trying to wrap my head around the instructions provided for Whisper is very difficult. I had two questions:
I only have VSCode at the moment. No Jupyter notebook if that's necessary for this.
Beta Was this translation helpful? Give feedback.
All reactions