---
name: Zhihu Transcribe
slug: zhihu-transcribe
category: AI Engineering
description: Zhihu Transcribe downloads Zhihu video audio, transcribes it with SenseVoice-Small, and saves the result as a Markdown file. Use it when you want a text transcript from a Zhihu video link without logging in.
github: "https://github.com/chubbyguan/chubbyskills/tree/main/zhihu-transcribe"
language: Python
stars: 637
forks: 90
install: "npx degit https://github.com/chubbyguan/chubbyskills/tree/main/zhihu-transcribe ~/.claude/skills/zhihu-transcribe"
installs_to: ~/.claude/skills/zhihu-transcribe
source_path: zhihu-transcribe/SKILL.md
collection_size: 14
category_size: 2451
collection_url: "https://dirskills.com/collections/chubbyguan/chubbyskills"
added: 2026-08-24T05:17:50.261Z
last_synced: 2026-08-24T05:17:50.261Z
canonical_url: "https://dirskills.com/skills/zhihu-transcribe"
---

# Zhihu Transcribe

Zhihu Transcribe downloads Zhihu video audio, transcribes it with SenseVoice-Small, and saves the result as a Markdown file. Use it when you want a text transcript from a Zhihu video link without logging in.

**Install:**

```bash
npx degit https://github.com/chubbyguan/chubbyskills/tree/main/zhihu-transcribe ~/.claude/skills/zhihu-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://www.zhihu.com/xxxxx"
python scripts/transcribe.py "https://www.zhihu.com/video/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 规则，控制请求频率，不要用于批量抓取、商用爬取或侵犯他人权益的场景。下载内容的版权归原作者所有。
