Forrest logo
back to the whisper tool

whisper:tldr:2ca30

whisper: Convert an audio file specifying the output format of the converted file.
$ whisper ${path-to-audio-mp3} --output-format ${txt}
try on your machine

The "whisper" command is being used here with two parameters:

  1. "${path-to-audio-mp3}": This is a placeholder for the actual path or location of an audio file in the MP3 format. You need to replace "${path-to-audio-mp3}" with the specific path to the MP3 file you want to process.

  2. "--output-format ${txt}": This parameter sets the desired output format for the command. In this case, "${txt}" is another placeholder for the output format. You should replace it with "txt" if you want the output to be in plain text format.

So, in summary, this command uses the "whisper" command-line tool to process an MP3 audio file and convert it into plain text format as the output.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the whisper tool