You-Get is a tiny command-line utility to download media contents (videos, audios, images) from the Web, in case there is no other handy way to do it. From here. And, it’s written in Python.
Download YouTube video
1 | # 1. Make sure you installed "ffmpeg" and "Python3". |
A full list of the supported website by “you-get” can be found from here.
Get mp3 Audio from mp4 file
From here.
1 | ffmpeg -i foo.mp4 bar.mp3 |
Play the mp3 file via command line
1 | # On Linux. |