Skip to content

Instantly share code, notes, and snippets.

#!/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; }
@gsilano
gsilano / Instructions_FFMPEG.md
Last active April 28, 2025 08:30
This script uses ffmpeg to convert MKV and MP4 file format in MOV for DaVinci Resolve video editing program

Overview

This script uses ffmpeg to convert MKV and MP4 file format in MOV for DaVinci Resolve video editing program

To install ffmpeg

sudo apt-get update
sudo apt-get install ffmpeg