initial commit

This commit is contained in:
Lostecho
2024-09-02 11:53:36 +08:00
commit cbac0ab8dd
565 changed files with 17862 additions and 0 deletions

18
journals/2023_05_26.md Normal file
View File

@@ -0,0 +1,18 @@
- ffmpeg提取视频音频 #视频编辑 #ffmpeg
id:: 665c19a5-1025-4888-805a-b0db7cfd13f6
- ```bash
ffmpeg -i sample.mp4 -q:a 0 -map a sample.mp3
ffmpeg -i input.mp4 -vn -c:a copy output.aac
```
- whisper #AI
- 安装
```bash
pip install -U openai-whisper
winget install ffmpeg
pip install torch torchvision torchaudio
pip install setuptools-rust
```
- 使用
```bash
whisper .\test.mp3 --language Chinese --model large
```