From: Robin Gareus Date: Mon, 15 Jun 2015 22:47:53 +0000 (+0200) Subject: use mpeg4 for internal video format (not mjpeg) X-Git-Tag: 4.1~38 X-Git-Url: https://main.carlh.net/gitweb/?a=commitdiff_plain;h=3f157f961aa848e7f35fb6224f8eb49526bc12b8;p=ardour.git use mpeg4 for internal video format (not mjpeg) reduces file size. xjadeo > 0.8 and harvid >= 0.8 handle this fine. --- diff --git a/gtk2_ardour/transcode_ffmpeg.cc b/gtk2_ardour/transcode_ffmpeg.cc index 7666395662..0f77000882 100644 --- a/gtk2_ardour/transcode_ffmpeg.cc +++ b/gtk2_ardour/transcode_ffmpeg.cc @@ -480,7 +480,7 @@ TranscodeFfmpeg::transcode (std::string outfile, const int outw, const int outh, argp[6] = (char*) calloc(10,sizeof(char)); snprintf(argp[6], 10, "%ix%i", width, height); argp[7] = strdup("-y"); argp[8] = strdup("-vcodec"); - argp[9] = strdup("mjpeg"); + argp[9] = strdup("mpeg4"); argp[10] = strdup("-an"); argp[11] = strdup("-intra"); argp[12] = strdup("-g");