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 🙏

© 2025 – Pkg Stats / Ryan Hefner

n8n-nodes-dudoxx

v0.1.1

Published

n8n community node package for interacting with the AssemblyAI API for speech-to-text transcription

Downloads

74

Readme

n8n-nodes-dudoxx

AssemblyAI N8N Hero

This is an n8n community node package for interacting with the AssemblyAI API.

It currently includes the following nodes:

  • AssemblyAI Transcriber: Transcribes audio files using the AssemblyAI API. Supports providing audio via URL or binary file input.

n8n is a fair-code licensed workflow automation platform.

Installation

Follow the installation guide in the n8n community nodes documentation.

  1. Go to Settings > Community Nodes.
  2. Select Install.
  3. Enter n8n-nodes-dudoxx in the Enter package name field.
  4. Agree to the risks of using community nodes: select I understand the risks, and I want to proceed.
  5. Select Install.

After installing the node, you can use it like any other node. n8n displays the node in the node panel under Community > Installed.

Operations

AssemblyAI N8N Flow

  • AssemblyAI Transcriber:
    • Transcribe audio from a public URL.
    • Transcribe audio from an n8n binary file property.
    • Supports various AssemblyAI models (including 'best' and 'nano').
    • Allows specifying additional options like language detection, speaker diarization, punctuation, text formatting, word boost, and more.
    • Choose between outputting the full raw transcript or just the transcript text.
    • Customize the field name for the transcript text output.
    • Includes detailed metadata about the transcription process and audio source.

Credentials

Requires AssemblyAI API credentials.

  1. Go to your AssemblyAI Dashboard.
  2. Navigate to API Keys.
  3. Create a new API key or use an existing one.
  4. In n8n, create new credentials for the AssemblyAI Transcriber node.
  5. Enter your AssemblyAI API Key.

Compatibility

Tested with n8n version 1.x.

Usage

  1. Install the package in your n8n instance.
  2. Add the AssemblyAI Transcriber node to your workflow.
  3. Configure the node properties:
    • Select the Source (URL or Binary Data).
    • Provide the Audio URL or Input Binary Field name.
    • Choose the desired Speech Model ('best' or 'nano').
    • Configure Additional Options as needed (language detection, speaker labels, etc.).
    • Select the Output Format (Full Response or Transcript Text Only).
    • If using "Transcript Text Only" format, optionally specify a custom Transcript Field Name (defaults to text).
  4. Connect the node and run your workflow.

Example Output (Transcript Text Only)

{
  "text": "Yeah. As much as it's worth celebrating the first spacewalk with an all female team, I think many of us are looking forward to it just being normal. And I think if it signifies anything, it is to honor the women who came before us who were skilled and qualified and didn't get the same opportunities that we have today.",
  "metadata": {
    "duration_ms": 4693,
    "speech_model": "best",
    "audio_duration": 26,
    "confidence": 0.9740912,
    "source": "url",
    "url": "https://dpgr.am/spacewalk.wav"
  }
}

Resources

Consulting & Services

For custom node development, workflow automation consulting, or other n8n-related services, please contact:

DUDOXX Team
Email: [email protected]
Website: https://dudoxx.com

License

MIT