OSDN Git Service

ダブルクォーテーションで囲うとLinuxでエラーになる
authoryukihane <yukihane.feather@gmail.com>
Thu, 15 Sep 2011 06:06:37 +0000 (15:06 +0900)
committeryukihane <yukihane.feather@gmail.com>
Thu, 15 Sep 2011 06:06:37 +0000 (15:06 +0900)
frontend/src/saccubus/worker/impl/convert/Convert.java

index 07c8ebd..5e73916 100644 (file)
@@ -194,7 +194,7 @@ public class Convert extends Worker<ConvertResult, ConvertProgress> {
         }
         if (!avfilterArgs.isEmpty()) {
             cmdList.add("-vfilters");
-            final String args = "\"" + join(avfilterArgs, ", ") + "\"";
+            final String args =  join(avfilterArgs, ", ");
             cmdList.add(args);
         }
         cmdList.add(output.getPath());