Skip to main content

FFMpeg convert all files of type in directory

for i in .ts; do ffmpeg -i "${i}" -c:v libx264 -c:a copy "${i%%.}.mp4"; done