#!/bin/bash tmp_video_dir=$1 audio=$2 output_dir=$3 output_file=$4 ffmpeg -y -i $tmp_video_dir/video.mp4 -i $audio -ac 1 -tune stillimage "$output_dir$output_file"