Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
为此编写应用程序可能有点矫枉过正。现有的工具已经做得非常好,而且很难超越它们的简单性:
wget http://www.youtube.com/get_video.php?video_id=... | ffmpeg -i - audio.mp3
全部完成!
如果您的应用程序随后需要对音频执行一些特殊操作,那么为该部分编写一个应用程序是有意义的。但如果只是输出音频,则将其输出到 ffmpeg 会容易得多。
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:
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.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(1)
为此编写应用程序可能有点矫枉过正。现有的工具已经做得非常好,而且很难超越它们的简单性:
全部完成!
如果您的应用程序随后需要对音频执行一些特殊操作,那么为该部分编写一个应用程序是有意义的。但如果只是输出音频,则将其输出到
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:
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.