mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-05 04:22:51 +08:00
28 lines
696 B
Python
28 lines
696 B
Python
from distutils.core import setup
|
|
setup(
|
|
name = 'ffmpeg-python',
|
|
packages = ['ffmpeg'],
|
|
version = '0.1.1',
|
|
description = 'Python bindings for FFmpeg - with support for complex filtering',
|
|
author = 'Karl Kroening',
|
|
author_email = 'karlk@kralnet.us',
|
|
url = 'https://github.com/kkroening/ffmpeg-python',
|
|
download_url = 'https://github.com/kkroening/ffmpeg-python/archive/0.1.tar.gz',
|
|
keywords = [
|
|
'a/v',
|
|
'audio',
|
|
'dsp',
|
|
'FFmpeg',
|
|
'ffmpeg',
|
|
'ffprobe',
|
|
'filtering',
|
|
'render',
|
|
'signals',
|
|
'streaming',
|
|
'streams',
|
|
'video',
|
|
'wrapper',
|
|
],
|
|
classifiers = [],
|
|
)
|