From 5ad21350cc68821189a805279bf7ef5f0a41ee5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mathias=20K=C3=B6hler?= Date: Sat, 19 Jan 2013 10:20:41 +0100 Subject: [PATCH] It's 2013 --- LICENSE | 4 ++-- ffmpegwrapper/__init__.py | 8 ++++---- ffmpegwrapper/codec.py | 2 +- ffmpegwrapper/ffmpeg.py | 2 +- ffmpegwrapper/filter.py | 2 +- ffmpegwrapper/parameters.py | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/LICENSE b/LICENSE index 76681f1..c0df976 100644 --- a/LICENSE +++ b/LICENSE @@ -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. \ No newline at end of file +DAMAGE. diff --git a/ffmpegwrapper/__init__.py b/ffmpegwrapper/__init__.py index d4e053d..40f87c7 100644 --- a/ffmpegwrapper/__init__.py +++ b/ffmpegwrapper/__init__.py @@ -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 diff --git a/ffmpegwrapper/codec.py b/ffmpegwrapper/codec.py index 691cac7..8df8b30 100644 --- a/ffmpegwrapper/codec.py +++ b/ffmpegwrapper/codec.py @@ -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. """ diff --git a/ffmpegwrapper/ffmpeg.py b/ffmpegwrapper/ffmpeg.py index 200a8ae..89d3cc5 100644 --- a/ffmpegwrapper/ffmpeg.py +++ b/ffmpegwrapper/ffmpeg.py @@ -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. """ diff --git a/ffmpegwrapper/filter.py b/ffmpegwrapper/filter.py index d5b6246..1dd67b0 100644 --- a/ffmpegwrapper/filter.py +++ b/ffmpegwrapper/filter.py @@ -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. """ diff --git a/ffmpegwrapper/parameters.py b/ffmpegwrapper/parameters.py index 7b69c34..0e41abe 100644 --- a/ffmpegwrapper/parameters.py +++ b/ffmpegwrapper/parameters.py @@ -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