1

I need to transcode video created using the Camstudio Lossless Codec into the QuickTime RLE format in order to get it to work with some other software.

What methods can I use to convert the video? I seem to have trouble finding software that will encode my video like this.

1 Answers1

1

http://www.ffmpeg.org/ffmpeg-all.html#Video-and-Audio-file-format-conversion

ffmpeg -i input.mp4 -codec copy -c:v qtrle output.mov

That will copy any audio, subtitle, or other non-video streams, and transcode video with the specified video codec. For supported options specific to qtrle,
ffmpeg -h encoder=qtrle

Peter Cordes
  • 6,345