コード例 #1
0
ファイル: ffprobe.py プロジェクト: iam-merlin/python-toolbox2
    def get_args(self):
        args = Worker.get_args(self)

        for input_file in self.input_files:
            args += input_file.get_args()

        return args
コード例 #2
0
    def get_args(self):
        args = Worker.get_args(self)

        for input_file in self.input_files:
            args += input_file.get_args()

        return args
コード例 #3
0
    def get_args(self):
        args = ['-replace']

        args += Worker.get_args(self)

        for output_file in self.output_files:
            args += output_file.get_args()

        for input_file in self.input_files:
            args += input_file.get_args(self.base_dir)

        return args
コード例 #4
0
    def get_args(self):
        args = []
        args += Worker.get_args(self)

        for output_file in self.output_files:
            args += output_file.get_args()

        for input_file in self.input_files:
            args += input_file.get_args()
            self.inputs_size += os.stat(input_file.path).st_size

        return args
コード例 #5
0
ファイル: omneon.py プロジェクト: iam-merlin/python-toolbox2
    def get_args(self):
        args = ['-replace']

        args += Worker.get_args(self)

        for output_file in self.output_files:
            args += output_file.get_args()

        for input_file in self.input_files:
            args += input_file.get_args(self.base_dir)

        return args
コード例 #6
0
ファイル: bmx.py プロジェクト: SmartJog/python-toolbox2
    def get_args(self):
        args = []
        args += Worker.get_args(self)

        for output_file in self.output_files:
            args += output_file.get_args()

        for input_file in self.input_files:
            args += input_file.get_args()
            self.inputs_size += os.stat(input_file.path).st_size

        return args