Just a handy and pretty simple Python script to extract MP3 audio files from videos. Requirements The script just requires the following two libraries: lame ffmpeg If the libraries are not installed just run the following command in your terminal: – On Mac (OS X): brew install lame ffmpeg – On Linux (Ubuntu): sudo apt-get install lame ffmpeg How to …
Installing multiple Python versions in Mac (OS X)
Using brew for having multiple versions of Python is a common approach, but it can be troublesome when trying to install very specific versions. Problems with the linking are also frequent, but what alternative do we have? Fortunately to solve these problems and waste no time setting up virtual environments we can use an awesome tool: pyenv Installing pyenv + …