如何以编程方式从 YouTube 视频中提取音频?

发布于 2024-09-05 01:30:24 字数 1436 浏览 3 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

又爬满兰若 2024-09-12 01:30:24

为此编写应用程序可能有点矫枉过正。现有的工具已经做得非常好,而且很难超越它们的简单性:

wget http://www.youtube.com/get_video.php?video_id=... |
  ffmpeg -i - audio.mp3

全部完成!

如果您的应用程序随后需要对音频执行一些特殊操作,那么为该部分编写一个应用程序是有意义的。但如果只是输出音频,则将其输出到 ffmpeg 会容易得多。

Writing an application for this might be overkill. Existing tools already do a pretty good job, and it's hard to beat their simplicity:

wget http://www.youtube.com/get_video.php?video_id=... |
  ffmpeg -i - audio.mp3

All done!

If your application needs to do something special with the audio afterwards, it would make sense to write an app for that part. But for just getting the audio out, shelling out to ffmpeg will be a lot easier.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文