Moderator: Mr_Noodle
ffmpeg -i concat:"video1.avi|video2.avi" -c copy output.avi
filename=$(basename "$1")
filename=${filename%.*}
converting_filenameHD="$filename-output.mpg"
ffmpeg -i concat:"$1" -c copy "converting_filenameHD"
Mr_Noodle wrote:This is part of the question I asked earlier. You have one file. How do you determine the other files to concat with it. How are they related to the first file?