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. Some rights reserved.

View file

@ -5,13 +5,13 @@
Simple wrapper for the ffmpeg command. 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. :license: BSD, see LICENSE for more details.
""" """
__title__ = "ffmpegwrapper" __title__ = 'ffmpegwrapper'
__author__ = "Mathias Koehler" __author__ = 'Mathias Koehler'
__version__ = "0.1-dev" __version__ = '0.1-dev'
from .ffmpeg import FFmpeg, Input, Output from .ffmpeg import FFmpeg, Input, Output

View file

@ -6,7 +6,7 @@
This module provides an Audio and VideoCodec This module provides an Audio and VideoCodec
class with methods to change various settings. 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. :license: BSD, see LICENSE for more details.
""" """

View file

@ -5,7 +5,7 @@
Your entrypoint for every Task you want to do with FFmpeg 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. :license: BSD, see LICENSE for more details.
""" """

View file

@ -5,7 +5,7 @@
This module provides filter methods for video and audio. 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. :license: BSD, see LICENSE for more details.
""" """

View file

@ -6,7 +6,7 @@
Implements a basic structure for commandline Implements a basic structure for commandline
arguments and some helpers to operate with them. 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. :license: BSD, see LICENSE for more details.
""" """
from itertools import chain from itertools import chain