FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
ffmpeg-python/setup.py at master · dashhudson/ffmpeg-python · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
dashhudson
/
ffmpeg-python
Public
forked from
kkroening/ffmpeg-python
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
ffmpeg-python
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
99 lines (91 loc) · 2.31 KB
Breadcrumbs
ffmpeg-python
/
setup.py
Copy path
File metadata and controls
99 lines (91 loc) · 2.31 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
from
setuptools
import
setup
from
textwrap
import
dedent
version
=
'0.2.0'
download_url
=
'https://github.com/kkroening/ffmpeg-python/archive/v{}.zip'
.
format
(
version
)
long_description
=
dedent
(
'''
\
ffmpeg-python: Python bindings for FFmpeg
=========================================
:Github: https://github.com/kkroening/ffmpeg-python
:API Reference: https://kkroening.github.io/ffmpeg-python/
'''
)
file_formats
=
[
'aac'
,
'ac3'
,
'avi'
,
'bmp'
,
'flac'
,
'gif'
,
'mov'
,
'mp3'
,
'mp4'
,
'png'
,
'raw'
,
'rawvideo'
,
'wav'
,
]
file_formats
+=
[
'.{}'
.
format
(
x
)
for
x
in
file_formats
]
misc_keywords
=
[
'-vf'
,
'a/v'
,
'audio'
,
'dsp'
,
'FFmpeg'
,
'ffmpeg'
,
'ffprobe'
,
'filtering'
,
'filter_complex'
,
'movie'
,
'render'
,
'signals'
,
'sound'
,
'streaming'
,
'streams'
,
'vf'
,
'video'
,
'wrapper'
,
]
keywords
=
misc_keywords
+
file_formats
setup
(
name
=
'ffmpeg-python'
,
packages
=
[
'ffmpeg'
],
version
=
version
,
description
=
'Python bindings for FFmpeg - with complex filtering support'
,
author
=
'Karl Kroening'
,
author_email
=
'karlk@kralnet.us'
,
url
=
'https://github.com/kkroening/ffmpeg-python'
,
download_url
=
download_url
,
keywords
=
keywords
,
long_description
=
long_description
,
install_requires
=
[],
extras_require
=
{
'dev'
: [
'numpy==1.16.4'
,
'pytest-mock==1.10.4'
,
'pytest==4.6.1'
,
'Sphinx==2.1.0'
,
'tox==3.12.1'
,
]
},
classifiers
=
[
'Intended Audience :: Developers'
,
'License :: OSI Approved :: Apache Software License'
,
'Natural Language :: English'
,
'Operating System :: OS Independent'
,
'Programming Language :: Python'
,
'Programming Language :: Python :: 2'
,
'Programming Language :: Python :: 2.7'
,
'Programming Language :: Python :: 3'
,
'Programming Language :: Python :: 3.3'
,
'Programming Language :: Python :: 3.4'
,
'Programming Language :: Python :: 3.5'
,
'Programming Language :: Python :: 3.6'
,
'Programming Language :: Python :: 3.7'
,
'Programming Language :: Python :: 3.8'
,
'Programming Language :: Python :: 3.9'
,
'Programming Language :: Python :: 3.10'
,
],
)
Back
|
FazBrowse Home
|
New Git URL