Add File description header
This commit is contained in:
parent
4239e2493f
commit
8d77cca104
|
|
@ -1,4 +1,18 @@
|
|||
# -*- coding: utf8 -*-
|
||||
"""
|
||||
ffmpegwrapper
|
||||
~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
Simple wrapper for the ffmpeg command.
|
||||
|
||||
:copyright: (c) 2012 by Mathias Koehler.
|
||||
:license: BSD, see LICENSE for more details.
|
||||
"""
|
||||
|
||||
__title__ = "ffmpegwrapper"
|
||||
__author__ = "Mathias Koehler"
|
||||
__version__ = "0.1-dev"
|
||||
|
||||
|
||||
from .ffmpeg import FFmpeg, Input, Output
|
||||
from .codec import VideoCodec, AudioCodec, NO_AUDIO, NO_VIDEO
|
||||
|
|
|
|||
|
|
@ -1,4 +1,14 @@
|
|||
# -*- coding: utf8 -*-
|
||||
"""
|
||||
ffmpegwrapper.codec
|
||||
~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
This module provides an Audio and VideoCodec
|
||||
class with methods to change various settings.
|
||||
|
||||
:copyright: (c) 2012 by Mathias Koehler.
|
||||
:license: BSD, see LICENSE for more details.
|
||||
"""
|
||||
|
||||
from itertools import chain
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
"""
|
||||
FFmpeg
|
||||
ffmpegwrapper.ffmpeg
|
||||
~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
Your entrypoint for every Task you want to do with FFmpeg
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,13 @@
|
|||
# -*- coding: utf8 -*-
|
||||
"""
|
||||
ffmpegwrapper.filter
|
||||
~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
This module provides filter methods for video and audio.
|
||||
|
||||
:copyright: (c) 2012 by Mathias Koehler.
|
||||
:license: BSD, see LICENSE for more details.
|
||||
"""
|
||||
|
||||
from itertools import chain
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue