ffmpeg -i input.ts -c copy output.mp4ffmpeg -i input.avi -c:v libx264 -preset slow -crf 23 -pix_fmt yuvj420p -c:a aac -b:a 160k output.mp4ffmpeg -i input.avi -c:v libx265 -preset slow -crf 28 -x265-params range=full -vf scale=-1:1080 -c:a aac -b:a 128k output.mp4ffmpeg -i input.avi -c:v hevc_nvenc -preset slow -rc vbr_hq -cq 28 -tier high -dst_range 1 -c:a copy output.mp4
@jeffward01 Best of luck. The output codecs I listed above are typically lossy (H.264 and H.265). If you want lossless, or at least very close to lossless, you may want something like Ut Video, Apple ProRes, or Avid DNxHD instead. The best explanation of this concept that I have found is Warren Young's comprehensive answer to "How to create an uncompressed AVI from a series of 1000's of PNG images using FFMPEG".