From: Diego Barrios Romero Date: Sun, 21 Feb 2010 20:27:04 +0000 (+0100) Subject: Propper bitrate FFMPEG parameter. X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=bdb57f4fff3436cad7f66a466a599541313ada9b;hp=472aaef36e2037f67fb96ee8077b8e9c7e3c3446;p=synfig.git Propper bitrate FFMPEG parameter. --- diff --git a/synfig-core/src/modules/mod_ffmpeg/trgt_ffmpeg.cpp b/synfig-core/src/modules/mod_ffmpeg/trgt_ffmpeg.cpp index cf53761..3359f28 100644 --- a/synfig-core/src/modules/mod_ffmpeg/trgt_ffmpeg.cpp +++ b/synfig-core/src/modules/mod_ffmpeg/trgt_ffmpeg.cpp @@ -165,7 +165,7 @@ ffmpeg_trgt::init() command = strprintf("ffmpeg -f image2pipe -vcodec ppm -an" " -r %f -i pipe: -loop_input" //" -metadata title=\"%s\" " - " -vcodec %s -b %i" + " -vcodec %s -b %ik" " -y -- \"%s\"\n", desc.get_frame_rate(), //get_canvas()->get_name().c_str(), @@ -175,7 +175,7 @@ ffmpeg_trgt::init() command = strprintf("ffmpeg -f image2pipe -vcodec ppm -an" " -r %f -i pipe: -loop_input" //" -metadata title=\"%s\" " - "-vcodec %s -b %i" + "-vcodec %s -b %ik" " -y -- \"%s\"\n", desc.get_frame_rate(), //get_canvas()->get_name().c_str(), @@ -218,7 +218,7 @@ ffmpeg_trgt::init() "-i", "pipe:", "-loop_input", //strprintf("-metadata title=\"%s\"", get_canvas()->get_name().c_str()).c_str(), "-vcodec", video_codec.c_str(), - "-b "+bitrate, + "-b", strprintf("%ik", bitrate).c_str(), "-y", "--", filename.c_str(), (const char *)NULL); else execlp("ffmpeg", "ffmpeg", "-f", "image2pipe", "-vcodec", @@ -227,7 +227,7 @@ ffmpeg_trgt::init() "-i", "pipe:", "-loop_input", //strprintf("-metadata title=\"%s\"", get_canvas()->get_name().c_str()).c_str(), "-vcodec", video_codec.c_str(), - "-b "+bitrate, + "-b", strprintf("%ik", bitrate).c_str(), "-y", filename.c_str(), (const char *)NULL); // We should never reach here unless the exec failed