FFMpeg must be installed.
Instructions:
- On Mac: Use Homebrew
brew install ffmpeg - http://ffmpeg.org/download.html
| import os | |
| import argparse | |
| import shutil | |
| import subprocess | |
| def list_installed_apps(): | |
| app_folder_path = '/Applications' | |
| app_list = [app.replace('.app', '') for app in os.listdir(app_folder_path) if app.endswith('.app')] | |
| return app_list |
FFMpeg must be installed.
Instructions:
brew install ffmpeg