Can now transcribe using faster whisper

Can now transcribe using faster whisper

I completed the tutorial showing how to use faster-whisper and ffmpeg to transcribe audio. I now have a Python script that will transcribe audio, generate a subtitle file, and add subtitles to the video with the click of a button.

currently, I run this tool using the CLI and a virtual Python environment. I am interested in creating a very simple GUI using tkinter. The GUI would allow the user to use the script without using the CLI.

I want them to be able to generate the subtitle file and add the subtitles to the video as two separate steps. This is so that they can proofread and edit the transcribed text before the subtitles are actually added to the video. The user would first click a “select file” button. Then, they would click “transcribe” to run the first part of the script (audio extraction, transcription and generate the subtitle file). When the .srt file is created, it would automatically be opened in a notepad (just the notepad app already on their computer). The user would proofread and edit this, then save it. Then the user would click an “add subtitles to video” button to run the add_subtitle_to_video part of the script.

I want this to be configured for bundling as a standalone .exe with all dependencies included, in order to be used as a portable app on a flash drive.

Comments are closed.