Download ONLY audio from a youtube video

后端 未结 2 734
小蘑菇
小蘑菇 2020-12-12 17:44

I know that there are a million ways to download a video from youtube and then convert it to audio or do further processing on it. But recently I was surprised to see an app

2条回答
  •  遥遥无期
    2020-12-12 18:23

    FFmpeg is capable of accepting an URL as input. If the URL is seekable, then FFmpeg could theoretically skip all the video frames, and thus it would need to download only the data for the audio stream.

    Try using

    ffmpeg -i http://myvideo.avi out.mp3
    

    and see if it takes less bandwidth.

提交回复
热议问题