Audio transcriber powered by the ElevenLabs Scribe AI model.
Project description
:musical_note: Pyscribe
A robust tool to transcribe audio (including music) files and URLs using ElevenLabs Scribe AI model.
:clipboard: Requirements
- 64-bit operating system
- Python 3.8+ if not using standalone binary
- ElevenLabs API key (instructions below)
:rocket: Installation
Prebuilt standalone binary (Windows, macOS, Linux)
Download a standalone binary from the latest release. Comes with keyring support.
Install from PyPI
If you don't want to enter your API key every time, the optional keyring dependency allows
Pyscribe to securely store it in your system's credential store.
# Recommended: Installation with keyring support
pip install "pyscribest[keyring]"
# Minimal installation without keyring support
pip install pyscribest
Run the tool without installation using uv[^1]
# With keyring support
uvx "pyscribest[keyring]" "path/or/url.mp3"
# Without keyring support
uvx pyscribest "path/or/url.mp3"
pyscribe was taken 🥹
:zap: Usage
[!IMPORTANT]
API Key Configuration
Log in to your ElevenLabs dashboard and create an API key with access to Speech to Text endpoint.
The script looks for the API key in the following order:
- Environment Variable: Looks for the
ELEVENLABS_API_KEYenvironment variable.- System Credential Store: Automatically saved to by the other methods if
keyringis installed.- Terminal Prompt: If terminal is detected, prompt user for the key without displaying it.
- Standard Input: Read one line from
sys.stdin.
Basic Transcription
pyscribe "https://storage.googleapis.com/eleven-public-cdn/audio/marketing/nicole.mp3"
In the spirit of Unix philosophy only successful transcription prints to sys.stdout.
Everything else is written to sys.stderr.
Use your shell's output redirection operator to write transcription to disk.
pyscribe "Never Gonna Give You Up.webm" > lyrics.txt
[!NOTE]
python -m pyscribeis available as an alternative if installed viapip.The
pyscribestentrypoint is intended to avoid typinguvx --from pyscribest pyscribe.
CLI Options
--full: Insert audio event tags like[laughter].--lang: An ISO-639-1 or ISO-639-3 language code[^2] for improved performance, e.g.deordeufor German.--no-keyring: Avoid reading or writing key to the system keyring.-v,--verbose: Show diagnostic messages.-V,--version: Print program's version and exit.
pyscribe --lang deu --full recording.wav -v
:hammer_and_wrench: Integration
The pyscribe package provides both synchronous and asynchronous
interfaces for seamless integration into any project.
Sync
from elevenlabs import ElevenLabs
from pyscribe import transcribe
client = ElevenLabs(api_key="YOUR API KEY")
text = transcribe(client, "path/or/url.mp3")
print(text)
Async
from elevenlabs import AsyncElevenLabs
from pyscribe import atranscribe
client = AsyncElevenLabs(api_key="YOUR API KEY")
text = await atranscribe(client, "path/or/url.mp3")
print(text)
[!TIP] The
elevenlabsSDK is included as a dependency; no separate installation is required.
:stop_sign: API Limitations
Concurrency
ElevenLabs imposes limitations
on concurrent Speech to Text requests.
For example, the free plan only allows 8 transcription requests at the same time.
File Size
ElevenLabs also imposes different file size limits:
- Local files — up to 3 GB[^3]
- Remote HTTPS files — up to 2 GB[^4]
Features
Pyscribe focuses on end users and aims to provide a simple interface for the Scribe model.
As such, this tool does not implement all Scribe features, including but not limited to:
- Webhook support
- Word-level timestamps
- Speaker diarization
- Output in other formats
[^1]: Documentation for uvx
[^2]: Supported Languages
[^3]: file Parameter Description
[^4]: cloud_storage_url Parameter Description
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pyscribest-1.2.1.tar.gz.
File metadata
- Download URL: pyscribest-1.2.1.tar.gz
- Upload date:
- Size: 7.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2b3f54a4bc76813eed34c1b5164c19a457f29245dbfa027292b09bc8d05370f3
|
|
| MD5 |
95e08d30c2a7ea6cf68a467767479d8d
|
|
| BLAKE2b-256 |
3b53392d4173a693ff5c14c55bf2ec6db09f127db3c99578c6a93c27bff0a2d2
|
Provenance
The following attestation bundles were made for pyscribest-1.2.1.tar.gz:
Publisher:
cicd.yml on tooruu/pyscribe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyscribest-1.2.1.tar.gz -
Subject digest:
2b3f54a4bc76813eed34c1b5164c19a457f29245dbfa027292b09bc8d05370f3 - Sigstore transparency entry: 812106739
- Sigstore integration time:
-
Permalink:
tooruu/pyscribe@460f1d2904ad0b145af8a01859d63b5c9c3feabf -
Branch / Tag:
refs/tags/v1.2.1 - Owner: https://github.com/tooruu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cicd.yml@460f1d2904ad0b145af8a01859d63b5c9c3feabf -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyscribest-1.2.1-py3-none-any.whl.
File metadata
- Download URL: pyscribest-1.2.1-py3-none-any.whl
- Upload date:
- Size: 9.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5852bd9ceef90b942a404447d38f7e85eb1e1183d333ffe9c07e86ea7b8655e
|
|
| MD5 |
2b17a93a996fe31bec3dd7e4ad1335cb
|
|
| BLAKE2b-256 |
d251116170521a895f948b114619ab44a246456d914d633660a0f7eddd6949e0
|
Provenance
The following attestation bundles were made for pyscribest-1.2.1-py3-none-any.whl:
Publisher:
cicd.yml on tooruu/pyscribe
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyscribest-1.2.1-py3-none-any.whl -
Subject digest:
f5852bd9ceef90b942a404447d38f7e85eb1e1183d333ffe9c07e86ea7b8655e - Sigstore transparency entry: 812106774
- Sigstore integration time:
-
Permalink:
tooruu/pyscribe@460f1d2904ad0b145af8a01859d63b5c9c3feabf -
Branch / Tag:
refs/tags/v1.2.1 - Owner: https://github.com/tooruu
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
cicd.yml@460f1d2904ad0b145af8a01859d63b5c9c3feabf -
Trigger Event:
push
-
Statement type: