This repository was archived by the owner on Apr 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·47 lines (41 loc) · 1.41 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·47 lines (41 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python
# -*- coding: utf8 -*-
"""
LibAVWrapper
~~~~~~~~~~~~~
LibAVWrapper is a small wrapper for the ffmpeg encoder. You can append
Codec, Filters and other ParameterStores to the AVConv class and then run the
resulting command.
>>> from libavwrapper import AVConv , Input, Output, VideoCodec, VideoFilter
>>> codec = VideoCodec('webm')
>>> input_video = Input('old')
>>> output_video = Output('new', videofilter, codec)
>>> AVConv('avconv', input_video, output_video)
<AVConv ['avconv', '-i', 'old', '-vcodec', 'webm', 'new']>
"""
from setuptools import setup
setup(
name="libavwrapper",
version="0.1-dev",
packages=['libavwrapper'],
author="Conrado Buhrer",
author_email="conrado@buhrer.net",
url="http://github.com/conrado/libavwrapper",
description='A simple wrapper for avconv-cli',
keywords='Video Convert avconv',
long_description=__doc__,
license="BSD",
test_suite='test',
tests_require='mock>=0.7.2',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Multimedia :: Video',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)