-
Hi, I'm pretty unskilled at python so I usually need help with command lines. I've got some short, 1-4 minute files I'd like to get transcribed and this project was recommended. However, each time I run the command I get a progress bar showing 1.5 gigabytes of data being processed, when the total size of the files in the folder I want transcribed are sub-100 megabytes. I'm pretty sure the program is just grabbing audio files from somewhere on my PC but I have no idea where. How do I customise which files specifically I want to have transcribed? Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
You can change to the directory of your audio files using the If you have a number of files of the same type (eg. .wav or .mp3) you can just list them one by one on the command line, or you can process all the files of one type like this
To see the different options, use
|
Beta Was this translation helpful? Give feedback.
You can change to the directory of your audio files using the
cd
command. Then run whisper. Or you can specify the path to your files, as suggested hereIf you have a number of files of the same type (eg. .wav or .mp3) you can just list them one by one on the command line, or you can process all the files of one type like this
whisper *.mp3 --language en --verbose True --output_format txt
To see the different options, use
whisper --help