It's 2013

This commit is contained in:
Mathias Köhler 2013-01-19 10:20:41 +01:00
parent 734057d7db
commit 5ad21350cc
6 changed files with 10 additions and 10 deletions

View file

@ -1,4 +1,4 @@
Copyright (c) 2010 by Mathias Koehler.
Copyright (c) 2013 by Mathias Koehler.
Some rights reserved.
@ -29,4 +29,4 @@ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE AND DOCUMENTATION, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
DAMAGE.
DAMAGE.

View file

@ -5,13 +5,13 @@
Simple wrapper for the ffmpeg command.
:copyright: (c) 2012 by Mathias Koehler.
:copyright: (c) 2013 by Mathias Koehler.
:license: BSD, see LICENSE for more details.
"""
__title__ = "ffmpegwrapper"
__author__ = "Mathias Koehler"
__version__ = "0.1-dev"
__title__ = 'ffmpegwrapper'
__author__ = 'Mathias Koehler'
__version__ = '0.1-dev'
from .ffmpeg import FFmpeg, Input, Output

View file

@ -6,7 +6,7 @@
This module provides an Audio and VideoCodec
class with methods to change various settings.
:copyright: (c) 2012 by Mathias Koehler.
:copyright: (c) 2013 by Mathias Koehler.
:license: BSD, see LICENSE for more details.
"""

View file

@ -5,7 +5,7 @@
Your entrypoint for every Task you want to do with FFmpeg
:copyright: (c) 2012 by Mathias Koehler.
:copyright: (c) 2013 by Mathias Koehler.
:license: BSD, see LICENSE for more details.
"""

View file

@ -5,7 +5,7 @@
This module provides filter methods for video and audio.
:copyright: (c) 2012 by Mathias Koehler.
:copyright: (c) 2013 by Mathias Koehler.
:license: BSD, see LICENSE for more details.
"""

View file

@ -6,7 +6,7 @@
Implements a basic structure for commandline
arguments and some helpers to operate with them.
:copyright: (c) 2012 by Mathias Koehler.
:copyright: (c) 2013 by Mathias Koehler.
:license: BSD, see LICENSE for more details.
"""
from itertools import chain