npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@bryan-gc/transcribe-cli

v1.0.7

Published

CLI tool to record audio and transcribe it using OpenAI Whisper

Downloads

167

Readme

transcribe-cli

A terminal (CLI) application built with Node.js and TypeScript that records audio from your microphone and transcribes it using the OpenAI Whisper API.

System Requirements

This tool depends on native audio utilities. Install them before running:

Linux (Ubuntu / Debian)

sudo apt-get update
sudo apt-get install sox libsox-fmt-all

macOS

brew install sox

Windows

  1. Download the binaries from SoX.
  2. Add the SoX folder to your PATH environment variable.

Installation

npm install -g @bryan-gc/transcribe-cli

First Run & Configuration

On the first launch, an interactive prompt will ask you for:

  • Your OpenAI API Key
  • A base path where audio recordings and glossaries will be stored

Your settings are saved persistently at ~/.transcribe-cli/config.json and reused on every subsequent run.

Usage

The application features two main modes of operation: Auto Record Mode (default) and Manual Menu Mode.

1. Auto Record Mode (Default)

Optimized for quick usage. By default, launching the app instantly starts recording your audio using your saved configuration.

# Start recording instantly
transcribe-cli
  • Recording: Starts immediately upon launch.
  • Stop & Transcribe: Simply press Enter. The tool will stop recording, run the transcription, copy it to your clipboard (if enabled in your config), and exit automatically.

2. Manual Menu Mode

If you prefer the interactive terminal menu to change settings (Microphone, Language, Glossary, etc.) on the fly before recording, use the --manual flag:

transcribe-cli --manual
# or
transcribe-cli -m

Navigate the interactive menu with:

  • Arrow keys — move up/down
  • Enter — confirm selection
  • Hotkeys — press the letter shown in brackets (e.g., r to record, t to transcribe, q to quit)

Other CLI Options

# Display help and all available commands
transcribe-cli --help
transcribe-cli -h

# Output the current version
transcribe-cli --version
transcribe-cli -v

Development Usage

If you are developing the tool locally and running it via npm run start, you must use a double dash (--) to pass arguments to the script instead of npm itself:

# Auto Record Mode (Default)
npm run start

# Manual Menu Mode
npm run start -- --manual
npm run start -- -m

# View Help
npm run start -- --help

# View Version
npm run start -- --version