OSDN Git Service

変換動画デフォルト出力先をout/converted から out/_converted に変更
authoryukihane <yukihane.feather@gmail.com>
Mon, 1 Aug 2011 10:24:58 +0000 (19:24 +0900)
committeryukihane <yukihane.feather@gmail.com>
Mon, 1 Aug 2011 10:24:58 +0000 (19:24 +0900)
frontend/out/_converted/.gitignore [moved from frontend/out/converted/.gitignore with 100% similarity]
frontend/src/saccubus/properties/OutputVideoSetting.java

index f539dcb..b4e1b32 100644 (file)
@@ -56,7 +56,7 @@ public class OutputVideoSetting extends ProcessFileSetting<Boolean> {
         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);