[▲ Vercel Community](/) · [Categories](/categories) · [Latest](/latest) · [Top](/top) · [Live](/live) [Showcase](/c/showcase/41) # Free Audio Transcriber on Vercel 378 views · 14 likes · 7 posts BestCodes (@bestcodes) · 2025-02-17 · ♥ 4 I made a free AI audio transcriber using the Google Gemini API! I was going to post about this a while back, but I forgot. I launched it on Peerlist today, which reminded me! https://peerlist.io/bestcodes/project/free-audio-transcriber The code is open source on [GitHub](https://github.com/The-Best-Codes/audio-transcription-gemini) and deployed (of course) on Vercel: https://free-audio-transcription.vercel.app/ It uses Next.js + Google Generative AI. I might switch to the Vercel AI SDK soon :smiley: Try it out and let me know what you think! Pauline P. Narvas (@pawlean) · 2025-02-17 · ♥ 1 Thanks for sharing this! I can't wait to try it out soon :smile: Also, curious about the transition to AI SDK soon :eyes: BestCodes (@bestcodes) · 2025-02-17 · ♥ 1 @pawlean I feel like the AI SDK will integrate better with React and Next.js, especially for streaming. Not sure if I'll switch yet, since things seem to be working fine right now, but I will probably do some tests with it :slight_smile: Pauline P. Narvas (@pawlean) · 2025-02-17 · ♥ 2 Let us know if you have any specific questions :sparkles: BestCodes (@bestcodes) · 2025-02-25 · ♥ 3 I'm using the `ai` SDK now with `@ai-sdk/google` on a side-project and I love it! It makes streaming and tool calling so much easier, especially with all the things it does for you in React and Next.js. When I finish up all my side-projects, I will be switching my audio transcriber to the AI SDK for sure :star_struck: BestCodes (@bestcodes) · 2025-03-03 · ♥ 2 I updated the repo with a README for developers! Now devs can see how it works. There is a flowchart to show the logic, making it easy to understand. Check it out! https://github.com/The-Best-Codes/audio-transcription-gemini?tab=readme-ov-file#audio-transcription-with-gemini-api Pauline P. Narvas (@pawlean) · 2025-03-04 · ♥ 1 This is awesome. Thanks, @bestcodes!