whisper-writer VS playlist-gpt

Compare whisper-writer vs playlist-gpt and see what are their differences.

whisper-writer

πŸ’¬πŸ“ A small dictation app using OpenAI's Whisper speech recognition model. (by savbell)

playlist-gpt

πŸŽΆπŸ‘©β€πŸ’» A fun little web app that analyzes your Spotify playlists with help from OpenAI's language models. (by savbell)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
whisper-writer playlist-gpt
2 2
188 14
- -
6.6 5.5
12 days ago about 1 year ago
Python Python
GNU General Public License v3.0 only GNU General Public License v3.0 only
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

whisper-writer

Posts with mentions or reviews of whisper-writer. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-08.
  • Show HN: WhisperWriter – Speech-to-text using OpenAI's Whisper, coded by ChatGPT
    2 projects | news.ycombinator.com | 8 May 2023
  • Using ChatGPT to generate a GPT project end-to-end
    4 projects | news.ycombinator.com | 6 May 2023
    I've also made six small apps completely coded by ChatGPT (with GitHub Copilot contributing a bit as well). Here are the two largest:

    PlaylistGPT (https://github.com/savbell/playlist-gpt): A fun little web app that allows you to ask questions about your Spotify playlists and receive answers from Python code generated by OpenAI's models. I even added a feature where if the code written by GPT runs into errors, it can send the code and the error back to the model and ask it to fix it. It actually can debug itself quite often! One of the most impressive things for me was how it was able to model the UI after the Spotify app with little more than me asking it to do exactly that.

    WhisperWriter (https://github.com/savbell/whisper-writer): A small speech-to-text app that uses OpenAI's Whisper API to auto-transcribe recordings from a user's microphone. It waits for a keyboard shortcut to be pressed, then records from the user's microphone until it detects a pause in their speech, and then types out the Whisper transcription to the active window. It only took me two hours to get a working prototype up and running, with additions such as graphic indicators taking a few more hours to implement.

    I created the first for fun and the second to help me overcome a disability that impacts my ability to use a keyboard. I now use WhisperWriter literally every day (I'm even typing part of this comment with it), and I used it to prompt ChatGPT to write the code for a few additional personal projects that improve my quality-of-life in small ways. If people are interested, I may write up more about the prompting and pair programming process, since I definitely learned a lot as I worked through these, including some similar lessons to the article!

    Personally, I am super excited about the possibilities these AI technologies open up for people like me, who may be facing small challenges that could be easily solved with a tiny app written in a few hours tailored specifically to their problem. I had been struggling to use my desktop computer because the Windows Dictation tool was very broken for me, but now I feel like I can use it to my full capacity again because I can type with WhisperWriter. Coding now takes a minimal amount of keyboard use thanks to these AI coding assistants -- and I am super grateful for that!

playlist-gpt

Posts with mentions or reviews of playlist-gpt. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-08.
  • Show HN: WhisperWriter – Speech-to-text using OpenAI's Whisper, coded by ChatGPT
    2 projects | news.ycombinator.com | 8 May 2023
    I have a disability that makes it painful to type on a keyboard. As a software engineer, this has a considerable impact on my daily life. I've tried using the built-in Windows dictation tools, but they are very buggy and extremely frustrating to use. I was actually getting pretty close to quitting tech as a whole because of all the difficulties I would run into when trying to code. But I recently started playing around with AI coding assistants – and they've been a complete game-changer for me.

    Last month, I made a small web app for fun, entirely coded by GPT (<https://github.com/savbell/playlist-gpt>). Since AI wrote most of the code, it required minimal keyboard use on my end – but I still needed to type up the prompts, which was causing me significant pain. I'd heard about OpenAI recently releasing a speech recognition model called Whisper, but nobody had written a dictation app using it yet. So I decided to continue to test out GPT's programming abilities and used it to write my own speech-to-text app that now vastly outperforms the built-in Windows ones! (At least, for my specific use cases.) I now use WhisperWriter every day for almost anything that I need to type, such as prompting ChatGPT – and even writing out this post!

    The process:

  • Using ChatGPT to generate a GPT project end-to-end
    4 projects | news.ycombinator.com | 6 May 2023
    I've also made six small apps completely coded by ChatGPT (with GitHub Copilot contributing a bit as well). Here are the two largest:

    PlaylistGPT (https://github.com/savbell/playlist-gpt): A fun little web app that allows you to ask questions about your Spotify playlists and receive answers from Python code generated by OpenAI's models. I even added a feature where if the code written by GPT runs into errors, it can send the code and the error back to the model and ask it to fix it. It actually can debug itself quite often! One of the most impressive things for me was how it was able to model the UI after the Spotify app with little more than me asking it to do exactly that.

    WhisperWriter (https://github.com/savbell/whisper-writer): A small speech-to-text app that uses OpenAI's Whisper API to auto-transcribe recordings from a user's microphone. It waits for a keyboard shortcut to be pressed, then records from the user's microphone until it detects a pause in their speech, and then types out the Whisper transcription to the active window. It only took me two hours to get a working prototype up and running, with additions such as graphic indicators taking a few more hours to implement.

    I created the first for fun and the second to help me overcome a disability that impacts my ability to use a keyboard. I now use WhisperWriter literally every day (I'm even typing part of this comment with it), and I used it to prompt ChatGPT to write the code for a few additional personal projects that improve my quality-of-life in small ways. If people are interested, I may write up more about the prompting and pair programming process, since I definitely learned a lot as I worked through these, including some similar lessons to the article!

    Personally, I am super excited about the possibilities these AI technologies open up for people like me, who may be facing small challenges that could be easily solved with a tiny app written in a few hours tailored specifically to their problem. I had been struggling to use my desktop computer because the Windows Dictation tool was very broken for me, but now I feel like I can use it to my full capacity again because I can type with WhisperWriter. Coding now takes a minimal amount of keyboard use thanks to these AI coding assistants -- and I am super grateful for that!

What are some alternatives?

When comparing whisper-writer and playlist-gpt you can also consider the following projects:

kaldi-active-grammar - Python Kaldi speech recognition with grammars that can be set active/inactive dynamically at decode-time

easy-chat - A ChatGPT UI for young readers, written by ChatGPT

WhisperLive - A nearly-live implementation of OpenAI's Whisper.

chatgpt-comparison-detection - Human ChatGPT Comparison Corpus (HC3), Detectors, and more! πŸ”₯

AI-Waifu-Vtuber - AI Vtuber for Streaming on Youtube/Twitch

chatGPT-cheatsheet - An ever-evolving introduction to ChatGPT, AI, and machine learning (including prompt examples and Python-built chatbots)

Free-AUTO-GPT-with-NO-API - Free Auto GPT with NO paids API is a repository that offers a simple version of Auto GPT, an autonomous AI agent capable of performing tasks independently. Unlike other versions, our implementation does not rely on any paid OpenAI API, making it accessible to anyone. [Moved to: https://github.com/IntelligenzaArtificiale/Free-Auto-GPT]

whisper-openai-gradio-implementation - Whisper is an automatic speech recognition (ASR) system Gradio Web UI Implementation

VardaGPT - Associative memory-enhanced GPT-2 model

shorthanddictation - Dictation program, which uses the reading speed unit syllables per minute

Free-Auto-GPT - Free Auto GPT with NO paids API is a repository that offers a simple version of Auto GPT, an autonomous AI agent capable of performing tasks independently. Unlike other versions, our implementation does not rely on any paid OpenAI API, making it accessible to anyone.