侧边栏壁纸
博主头像
Narutoの博客

行动起来,活在当下

  • 累计撰写 60 篇文章
  • 累计创建 29 个标签
  • 累计收到 0 条评论

目 录CONTENT

文章目录

常用命令

Naruto
2025-12-18 / 0 评论 / 0 点赞 / 3 阅读 / 0 字
  • rsync 同步

rsync -aAXHv --progress /mnt/usb/ /mnt/nas/
  • ffmpeg 视频转换

ffmpeg -i "whole_hd1.wmv" -c:v libx264 -profile:v high -level 4.0 -pix_fmt yuv420p -preset fast -crf 20 -c:a aac -b:a 128k "whole_hd1.mp4"
  • whisper 字幕识别

ffmpeg -i "111.mp4" -ar 16000 -ac 1 -f wav - | whisper-cli.exe -m "C:\Users\naruto\AppData\Local\bili-shadowreplay\medium\ggml-medium-q8_0.bin" -f - -osrt -of 111
--language zh
ffmpeg -i '111.mp4' -ar 16000 -ac 1 -f wav - | /mnt/nas2/ffmpeg/whisper.cpp/build/bin/whisper-cli -m /mnt/nas2/ffmpeg/whisper.cpp/models/ggml-medium-q5_0.bin -f - -osrt -of output

0

评论区