Speech to Text Pack
★Trusted◇Sandbox optionalv1.0.0MITUnverifiedby AgentNode · published 6 months ago · toolpack
Transcribe audio files and streams to text using Whisper.
Convert audio recordings, podcasts, and meeting recordings to text. Supports 50+ languages with timestamps and speaker diarization.
Quick Start
agentnode install speech-to-text-packRuns in a subprocess with filtered environment by default. Declared permissions are policy-checked, not sandboxed.
Usage
From packagefrom speech_to_text_pack.tool import run
result = run(
file_path="meeting_2026-03-18.mp3",
language="en",
timestamps=True,
speaker_diarization=True
)
for segment in result["segments"]:
start = segment["start"]
end = segment["end"]
speaker = segment.get("speaker", "Unknown")
text = segment["text"]
print(f"[{start:.1f}s - {end:.1f}s] {speaker}: {text}")
print(f"\nFull transcript length: {len(result['text'])} characters")
print(f"Detected language: {result['language']}")
print(f"Confidence: {result['confidence']:.2%}")Environment Variables
OPENAI_API_KEYOpenAI API key for cloud-based Whisper transcription (optional — local model works without it)
Runs locally on your machine. No execution data is sent to AgentNode. Permissions are checked before execution. Learn how this works
Verification
Package installs and imports correctly.
This package scored below the verification threshold. Some checks may have failed or produced inconclusive results.
Verified in cases_real mode
Last verified 11d ago· Runner v2.0.0
Use this when you need to...
- ›Transcribe customer support call recordings with speaker labels
- ›Generate timestamped subtitles from podcast audio files
- ›Convert multilingual meeting recordings to searchable text
- ›Transcribe live audio streams in real time for accessibility
- ›Extract spoken dialogue from video files for content indexing
README
Version History
Capabilities
Permissions
Declared by the publisher. Checked before execution by the policy gate.
Permissions are policy-checked before execution. For trusted and curated packages that run on the host, network and filesystem access are policy-checked but not OS-sandboxed. When runtime isolation is required for untrusted/community code, AgentNode uses sandbox-or-fail-closed if the required container runtime and pinned image are available. Learn more
Privacy
All tool execution happens locally on your machine. AgentNode never receives:
- • Tool inputs or outputs
- • Execution logs
- • Data your agent processes
Only install events and search queries are sent to the registry.
agentnode install speech-to-text-packEnvironment Variables
OPENAI_API_KEYFiles (3)
License
MITStats
Compatibility
Frameworks
Runtime
pythonPython Version
>=3.10Trust & Security
Publisher
AgentNode
@agentnode