---
name: Weibo Transcribe
slug: weibo-transcribe
category: AI Engineering
description: Weibo Transcribe downloads audio from Weibo videos, transcribes it with SenseVoice-Small, and saves the result as Markdown. Use it for supported Weibo video links without logging in, when access is available.
github: "https://github.com/chubbyguan/chubbyskills/tree/main/weibo-transcribe"
language: Python
stars: 637
forks: 90
install: "npx degit https://github.com/chubbyguan/chubbyskills/tree/main/weibo-transcribe ~/.claude/skills/weibo-transcribe"
installs_to: ~/.claude/skills/weibo-transcribe
source_path: weibo-transcribe/SKILL.md
collection_size: 14
category_size: 2451
collection_url: "https://dirskills.com/collections/chubbyguan/chubbyskills"
added: 2026-08-24T05:17:49.168Z
last_synced: 2026-08-24T05:17:49.168Z
canonical_url: "https://dirskills.com/skills/weibo-transcribe"
---

# Weibo Transcribe

Weibo Transcribe downloads audio from Weibo videos, transcribes it with SenseVoice-Small, and saves the result as Markdown. Use it for supported Weibo video links without logging in, when access is available.

**Install:**

```bash
npx degit https://github.com/chubbyguan/chubbyskills/tree/main/weibo-transcribe ~/.claude/skills/weibo-transcribe
```

## README

# 微博视频转录 Skill

将微博视频下载音频，用 SenseVoice-Small 转录为文字，存为 Markdown 文件。

## 环境要求

```bash
pip install funasr modelscope torch torchaudio
brew install ffmpeg yt-dlp  # macOS
```

## 使用方法

```bash
python scripts/transcribe.py "https://weibo.com/xxxxx"
python scripts/transcribe.py "https://m.weibo.cn/xxxxx"
```

## 流程

1. yt-dlp 下载微博视频音频
2. SenseVoice-Small 转录
3. 生成带 frontmatter 的 Markdown

## 已知限制

- 部分微博视频可能需要登录才能访问
- SenseVoice-Small 主要针对中文优化

## 致谢

- [yt-dlp/yt-dlp](https://github.com/yt-dlp/yt-dlp) — 视频下载工具
- [FunAudioLLM/SenseVoice](https://github.com/FunAudioLLM/SenseVoice) — 语音识别模型

## ⚖️ 合规声明

仅供**个人学习与研究**使用。请遵守目标平台的服务条款（ToS）与 robots 规则，控制请求频率，不要用于批量抓取、商用爬取或侵犯他人权益的场景。下载内容的版权归原作者所有。
