String ffmpeg = prop.getProperty(PROP_FFMPEG_PATH, ".\\bin\\ffmpeg.exe");
String vhook = prop.getProperty(PROP_VHOOK_PATH, ".\\bin\\nicovideo.dll");
- String ext = prop.getProperty(PROP_CMDLINE_EXT, "mp4");
+ String ext = prop.getProperty(PROP_CMDLINE_EXT, ".m4v");
String main = prop.getProperty(PROP_CMDLINE_MAIN, "");
String in = prop.getProperty(PROP_CMDLINE_IN, "");
- String out = prop.getProperty(PROP_CMDLINE_OUT, "-f ipod");
+ String out = prop.getProperty(PROP_CMDLINE_OUT, "-f ipod -g 150 -qcomp 0.7 -qmin 10 -qmax 51 -qdiff 4 -subq 6 -me_range 16 -i_qfactor 0.714286");
FfmpegOption opt = new FfmpegOption(ext, main, in, out);
return new MovieSetting(new File(ffmpeg), new File(vhook), optionFile, opt);