It's 2013
This commit is contained in:
parent
734057d7db
commit
5ad21350cc
2
LICENSE
2
LICENSE
|
|
@ -1,4 +1,4 @@
|
||||||
Copyright (c) 2010 by Mathias Koehler.
|
Copyright (c) 2013 by Mathias Koehler.
|
||||||
|
|
||||||
Some rights reserved.
|
Some rights reserved.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue