Add File description header

This commit is contained in:
Mathias Koehler 2012-03-16 22:58:03 +01:00
parent 4239e2493f
commit 8d77cca104
4 changed files with 35 additions and 1 deletions

View file

@ -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

View file

@ -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

View file

@ -1,6 +1,7 @@
# -*- coding: utf-8 -*-
"""
FFmpeg
ffmpegwrapper.ffmpeg
~~~~~~~~~~~~~~~~~~~~
Your entrypoint for every Task you want to do with FFmpeg

View file

@ -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