Transcriptify ——The whisper that automatically compresses audio files #1232
victorGPT
started this conversation in
Show and tell
Replies: 2 comments 6 replies
-
Great Job! |
Beta Was this translation helpful? Give feedback.
2 replies
-
Hi @victorGPT, I currently have a professional project where I use ffmpeg-wasm to reduce file size before whisper processing. I target the aac format for a bitrate of 64 kbps. Is your conversion to 16k mp3 sufficient to guarantee the quality of the audio? |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello everyone, whisper has been a great help to my work. I use a MacBook Air with an M2 processor. Using openai to process audio files is obviously a more convenient and efficient choice than processing them locally.
However, as stated in the documentation, openai only supports audio files up to 25MB, and it is recommended by the official website that for large files, they should be split into several smaller ones before batch processing. But I have a cooler solution! - I wrote a python script called Transcriptify
Transcriptify uses ffmpeg to compress the sound quality before transcribing it with openai. The volume of compressed audio within about an hour and a half is all under 25MB, enough for more scenarios.
I hope this script can be helpful to everyone. By the way, this script was programmed under the guidance of ChatGPT. Just a week ago, I was a layman who couldn't write a single line of code. Thanks to ChatPGT for changing me.
Beta Was this translation helpful? Give feedback.
All reactions