import { Badge } from '@/components/ui/badge' import { Button } from '@/components/ui/button' import { Card, CardContent } from '@/components/ui/card' import { Tabs, TabsContent, TabsList, TabsTrigger } from '@/components/ui/tabs' import { Github, Star, ExternalLink, Download } from 'lucide-react' import { ScrollArea } from '@/components/ui/scroll-area.tsx' import logo from '@/assets/icon.svg' export default function AboutPage() { const images = [ 'https://common-1304618721.cos.ap-chengdu.myqcloud.com/20250504102850.png', 'https://common-1304618721.cos.ap-chengdu.myqcloud.com/20250504103028.png', 'https://common-1304618721.cos.ap-chengdu.myqcloud.com/20250504103304.png', 'https://common-1304618721.cos.ap-chengdu.myqcloud.com/20250504103625.png', ] return (
{/* Hero Section */}
BiliNote Logo

BiliNote v1.7.3

AI 视频笔记生成工具 让 AI 为你的视频做笔记

MIT License React FastAPI Docker Compose Active
{/* Project Introduction */}

✨ 项目简介

BiliNote 是一个开源的 AI 视频笔记助手,支持通过哔哩哔哩、YouTube、抖音等视频链接, 自动提取内容并生成结构清晰、重点明确的 Markdown 格式笔记。支持插入截图、原片跳转等功能。

{/* Features Section */}

🔧 功能特性

{[ { title: '多平台支持', desc: '支持 Bilibili、YouTube、本地视频、抖音等多个平台' }, { title: '笔记格式选择', desc: '支持返回多种笔记格式,满足不同需求' }, { title: '笔记风格选择', desc: '支持多种笔记风格,个性化定制' }, { title: '多模态视频理解', desc: '结合视觉和音频内容,全面理解视频' }, { title: '自定义 GPT 配置', desc: '支持自行配置 GPT 大模型' }, { title: '本地音频转写', desc: '支持 Fast-Whisper 等本地模型音频转写' }, { title: '结构化笔记', desc: '自动生成结构化 Markdown 笔记' }, { title: '智能截图', desc: '可选插入自动截取的关键画面' }, { title: '内容跳转', desc: '支持关联原视频的内容跳转链接' }, ].map((feature, index) => (

{feature.title}

{feature.desc}

))}
{/* Screenshots Section */}

📸 截图预览

{images.map(num => (
{`BiliNote
))}
{/* Quick Start Section */}

🚀 快速开始

手动安装 Docker 部署

1. 克隆仓库

git clone https://github.com/JefferyHcool/BiliNote.git
cd BiliNote
mv .env.example .env

2. 启动后端(FastAPI)

cd backend
pip install -r requirements.txt
python main.py

3. 启动前端(Vite + React)

cd BiliNote_frontend
pnpm install
pnpm dev

访问:http://localhost:5173

1. 克隆仓库

git clone https://github.com/JefferyHcool/BiliNote.git
cd BiliNote
mv .env.example .env

2. 启动 Docker Compose

docker compose up --build

默认端口:
前端:http://localhost:${'{FRONTEND_PORT}'}
后端:http://localhost:${'{BACKEND_PORT}'}
.env 文件中可自定义端口与环境配置

{/* Community Section */}

联系和加入社区

BiliNote 交流 QQ 群

785367111

BiliNote 交流微信群

{/* License Section */}

📜 License

MIT License

{/* Footer */}
) }