From e9ae365e13a7141e43f41e4ccd6ea9ef8efe4311 Mon Sep 17 00:00:00 2001 From: Daniel Date: Mon, 13 Aug 2012 01:06:49 +0300 Subject: [PATCH] Update ffmpegwrapper/ffmpeg.py --- ffmpegwrapper/ffmpeg.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ffmpegwrapper/ffmpeg.py b/ffmpegwrapper/ffmpeg.py index af0d299..ac1b54d 100644 --- a/ffmpegwrapper/ffmpeg.py +++ b/ffmpegwrapper/ffmpeg.py @@ -23,7 +23,7 @@ from .parameters import ParameterContainer, Parameter class Input(ParameterContainer): - """Container for a input file. + """Container for an input file. :param file_path: Path to the input file :param args: A list of Containers that should be appended @@ -39,7 +39,7 @@ class Input(ParameterContainer): class Output(ParameterContainer): - """Container for a output file. + """Container for an output file. :param file_path: Path in which the file should be saved :param args: A list of Containers that should be appended @@ -129,7 +129,7 @@ class FFmpegProcess(object): class FFmpeg(ParameterContainer): - """This class represent the FFmpeg command. + """This class represents the FFmpeg command. It behaves like a list. If you iterate over the object it will yield small parts from the ffmpeg command with it arguments. The arguments @@ -149,7 +149,7 @@ class FFmpeg(ParameterContainer): self.container_list.insert(0, Parameter(key, value)) def run(self): - """Executes the command of this object. Return a + """Executes the command of this object. Returns a :class:`FFmpegProcess` object which have already the :meth:`FFmpegProcess.run` invoked.