A macOS video/audio downloader. Think of it as a youtube downloader that works on many sites.
Note: Get It requires Homebrew. The required dependencies will be installed with Homebrew.
Download it here, unzip it and open it. To install the dependencies required to run the software, please open the settings in the app and click on 'Install/update software'. This will not update Get It, but it will update all dependencies.
Get It requires the following dependencies which you can install and/or update using the command line (see below).
The following list is required:
- xcode-select
- brew
- python
- python3
- pycrypt
- youtube-dl
- libav
- ffmpeg
To install the dependencies, open the Terminal app and paste the following commands to install and/or update the respective tools.
xCode command line tools
if ! xcode-select -v &> /dev/null; then xcode-select --install; fi
Homebrew
if brew -v &> /dev/null; then brew update; else echo /usr/bin/ruby -e '$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)'; fi
Python
if brew ls --versions python &> /dev/null; then brew upgrade python; else brew install python; brew link python; fi
Python 3
if brew ls --versions python3 &> /dev/null; then brew upgrade python3; else brew install python3; fi
PyCrypt
if pip2.7 list | grep -i pycrypt &> /dev/null; then pip2.7 install pycrypt --upgrade; else pip2.7 install pycrypt; fi
Youtube-dl
if youtube-dl --version &> /dev/null; then brew upgrade youtube-dl; else brew install youtube-dl; fi
LibAV
if brew list libav &> /dev/null; then brew upgrade libav; else brew install libav; fi
FFMPEG
if brew list ffmpeg &> /dev/null; then brew upgrade ffmpeg; else brew install ffmpeg; fi
Each component can be installed if it is not used by another program on your Mac. To completely clean everything that is brew related: https://github.com/Homebrew/install#uninstall-homebrew
To uninstall the developer tools:
sudo rm -rf /Library/Developer/CommandLineTools
Get It will download audio and/or movies from many websites such as YouTube, BBC, Instagram, ... It's a GUI round the popular YouTube-DL command-line program but with an easy to use interface. It will save your settings dynamically or you can restore the default settings. The default settings will download the audio from a video, convert it to an MP3 and save it to you downloads folder. This was, in my opinion, the mostly used setting.
Because this is a simple GUI wrapper for the youtube-dl
command, most issues can be traced back to the binary. The following common issues exists and can be solved easily:
- 'Something went wrong': An example can be found in #25. The can usually be resolved by simply updating youtube-dl as follows:
sudo youtube-dl --update
.
You can submit a bug here on Github. Please provide the following:
- The URL(s) that you try to download.
- Your settings.
Also, open the Terminal app on your MacBook and issue the following command:
cat /tmp/getit_logs
Provide the output of the first command of you have an issue while installing the required software and provide the output of the second command of you have problems while downloading your URLs.
Thanks to youtube-dl authors for creating such an amazing tool.