Skip to content

Instantly share code, notes, and snippets.

View nickferrando's full-sized avatar
💭
I may be slow to respond.

Nick Ferrando nickferrando

💭
I may be slow to respond.
View GitHub Profile
@nickferrando
nickferrando / Bento4-Ubuntu-Install.sh
Last active June 23, 2023 00:02
Installing Bento4 Tools for Ubuntu
#Install Git
sudo apt update
sudo apt install git
#Git Clone Bento4
git clone https://github.com/axiomatic-systems/Bento4.git
cd Bento4/
@nickferrando
nickferrando / bash-ffmpeg-multiple-io.sh
Created August 24, 2023 01:23
BASH Automation for FFmpeg processing, with Multiple Files Input and Separate Directories Output
#!/bin/bash
#This script will process each file in a given input directory
#and will create a corresponding output folder for each processed file.
# Input and output directories
input_dir="/your/input/directory"
output_dir="output_folder"
# Create the output directory if it doesn't exist
@nickferrando
nickferrando / single-rendition-hls.sh
Created August 25, 2023 10:43
BASH Script for HLS Single Rendition
#!/bin/bash
#This script will process each file in a given input directory
#and will create a corresponding output folder for each processed file.
# Input and output directories
input_dir="YOUR_INPUT_DIRECTORY"
output_dir="output_folder"
# Create the output directory if it doesn't exist