This script uses ffmpeg to convert MKV and MP4 file format in MOV for DaVinci Resolve video editing program
sudo apt-get update
sudo apt-get install ffmpeg
#!/bin/sh | |
set -e | |
# You can change the install path here if you like | |
TT_PATH=/opt/tt | |
command -v tar > /dev/null || { echo "'tar' command is required"; exit 1; } | |
command -v wget > /dev/null || { echo "'wget' command is required"; exit 1; } | |
command -v unzip > /dev/null || { echo "'unzip' command is required"; exit 1; } |