返回顶部
c

cloudflare-whisper-workerCloudflare语音转录

Transcribe audio using a deployed Cloudflare Worker Whisper endpoint. Use when converting voice/audio files (wav, mp3, m4a, ogg, webm) to text through the custom /transcribe API, including bearer-token auth, plain-text extraction, and quick CLI transcription workflows.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.0
安全检测
已通过
314
下载量
免费
免费
0
收藏
概述
安装方式
版本历史

cloudflare-whisper-worker

Cloudflare Whisper Worker

使用此技能通过已部署的Whisper Worker API转录音频。

端点

  • - 基础URL:https://lotfi-whisper-worker.medtouradmin.workers.dev
  • 路由:POST /transcribe
  • 认证:Authorization: Bearer
  • 请求体:原始音频字节(--data-binary @file)

必需的环境变量

每个Shell会话设置一次令牌:

bash
export WHISPERWORKERTOKEN=

转录文件(JSON响应)

bash
curl -sS -X POST https://lotfi-whisper-worker.medtouradmin.workers.dev/transcribe \
-H content-type: audio/wav \
-H authorization: Bearer $WHISPERWORKERTOKEN \
--data-binary @audio.wav

转录并仅返回文本

bash
curl -sS -X POST https://lotfi-whisper-worker.medtouradmin.workers.dev/transcribe \
-H content-type: audio/wav \
-H authorization: Bearer $WHISPERWORKERTOKEN \
--data-binary @audio.wav \
| jq -r .result.text // .text // .result.response // empty

Content-Type 指南

  • - WAV:audio/wav
  • MP3:audio/mpeg
  • M4A:audio/mp4
  • OGG/OPUS:audio/ogg
  • WEBM:audio/webm

常见错误

  • - 401 Unauthorized:缺少或无效的Bearer令牌
  • 400 Empty audio body:文件路径错误或文件为空
  • 400 Send raw audio...:无效的Content-Type头
  • 500:Worker/运行时/模型错误;请重试并检查完整JSON

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 cloudflare-whisper-worker-1776205457 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 cloudflare-whisper-worker-1776205457 技能

通过命令行安装

skillhub install cloudflare-whisper-worker-1776205457

下载

⬇ 下载 cloudflare-whisper-worker v1.0.0(免费)

文件大小: 2.13 KB | 发布时间: 2026-4-15 12:14

v1.0.0 最新 2026-4-15 12:14
Initial release: Cloudflare Whisper worker transcription skill with bearer auth and helper script.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部