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 🙏

© 2024 – Pkg Stats / Ryan Hefner

voicely

v1.1.5

Published

Voicely - A CLI tool to transcribe audio files and summarize the transcriptions using OpenAI's APIs.

Downloads

24

Readme

Voicely: Audio Transcription and Summarization CLI Tool

Voicely is a CLI tool that automates the process of transcribing audio files and summarizing the transcriptions. Leveraging the power of OpenAI's APIs, Voicely provides a streamlined workflow for turning audio content into concise, written summaries.

Features

  • Audio Transcription: Converts speech in audio files into text.
  • Text Summarization: Generates concise summaries from the transcribed text.

Quick Start

  1. Obtain an OpenAI API Key: Visit OpenAI's API platform to generate your API key. Ensure you have sufficient credit, as API usage may incur costs.

  2. Install Voicely Globally:

npm install -g voicely
  1. Set Up Your OpenAI API Key:
  • Unix-based Systems (Linux/macOS):
export OPENAI_API_KEY=your_openai_api_key
  • Windows (Command Prompt):
set OPENAI_API_KEY=your_openai_api_key
  1. Transcribe and Summarize an Audio File:
voicely -f /path/to/audio/file.mp3

Installation

For a more detailed setup, including local installation options, see below.

Ensure you have Node.js installed (version 14.x or higher is recommended).

Voicely can be installed globally on your system, allowing you to use it from any directory.

npm install -g voicely

Environment Setup

To use Voicely, you must provide your OpenAI API key as an environment variable:

  • Obtaining the API Key: If you haven't already, get your API key from OpenAI's API platform. Note that using the OpenAI API may incur costs, so ensure your account has sufficient credits.

Unix-based Systems (Linux/macOS)

export OPENAI_API_KEY=your_openai_api_key_here

Windows

In Command Prompt:

set OPENAI_API_KEY=your_openai_api_key_here

Alternatively, you can provide the API key directly in the command line for one-off uses:

OPENAI_API_KEY=your_openai_api_key_here voicely -f /path/to/audio.mp3

Usage

For advanced usage options and additional flags, see the Usage section below.

voicely -f /path/to/audio/file.mp3 -o /path/to/output/directory

Options

-f, --file <path>: (Required) Path to the audio file you want to transcribe.

-o, --output <path>: (Optional) Output directory for the transcript and summary files. Defaults to the current directory.

Contributing

Contributions to improve the tool are welcome.

License

This project is licensed under the MIT License.

Acknowledgments

Voicely relies on OpenAI's powerful APIs for audio transcription and text summarization. Users are encouraged to adhere to OpenAI's usage policies and terms.