From: yukihane Date: Mon, 1 Aug 2011 10:24:58 +0000 (+0900) Subject: 変換動画デフォルト出力先をout/converted から out/_converted に変更 X-Git-Tag: rel20110806_ver1.5.0~8^2~4 X-Git-Url: http://git.osdn.net/view?p=coroid%2Finqubus.git;a=commitdiff_plain;h=0101da2ca2ce3308aa7e150fd3c090ceb2a9a8e0 変換動画デフォルト出力先をout/converted から out/_converted に変更 --- diff --git a/frontend/out/converted/.gitignore b/frontend/out/_converted/.gitignore similarity index 100% rename from frontend/out/converted/.gitignore rename to frontend/out/_converted/.gitignore diff --git a/frontend/src/saccubus/properties/OutputVideoSetting.java b/frontend/src/saccubus/properties/OutputVideoSetting.java index f539dcb..b4e1b32 100644 --- a/frontend/src/saccubus/properties/OutputVideoSetting.java +++ b/frontend/src/saccubus/properties/OutputVideoSetting.java @@ -56,7 +56,7 @@ public class OutputVideoSetting extends ProcessFileSetting { String file = prop.getProperty(PROP_CONVERTED_FILE, "video.avi"); boolean cutId = Boolean.parseBoolean(prop.getProperty(PROP_NOT_ADD_VIDEOID_CONV, "false")); boolean autoNaming = Boolean.parseBoolean(prop.getProperty(PROP_CONV_FIX_FILE_NAME, "true")); - String folder = prop.getProperty(PROP_CONV_FIX_FILE_NAME_FOLDER, "out/converted"); + String folder = prop.getProperty(PROP_CONV_FIX_FILE_NAME_FOLDER, "out/_converted"); return new OutputVideoSetting(process, autoNaming, new File(folder), new File(file), cutId, addComment, addTcomment);