mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-05 04:22:51 +08:00
Publish to pypi
This commit is contained in:
parent
ba70517eb3
commit
48e9aff9fa
5
.gitignore
vendored
5
.gitignore
vendored
@ -1,3 +1,4 @@
|
|||||||
venv
|
|
||||||
.cache
|
.cache
|
||||||
tests/dummy2.mp4
|
dist/
|
||||||
|
ffmpeg/tests/dummy2.mp4
|
||||||
|
venv
|
||||||
|
13
LICENSE
Normal file
13
LICENSE
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
Copyright 2017 Karl Kroening
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
4
MANIFEST
Normal file
4
MANIFEST
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
# file GENERATED by distutils, do NOT edit
|
||||||
|
README
|
||||||
|
setup.py
|
||||||
|
ffmpeg/__init__.py
|
@ -1,4 +1,4 @@
|
|||||||
# ffmpeg-python: Powerfully simple A/V routing with Python
|
# ffmpeg-python: FFmpeg Python wrapper with support for complex filtering
|
||||||
|
|
||||||
## Overview
|
## Overview
|
||||||
|
|
||||||
@ -59,4 +59,3 @@ ffmpeg.concat(
|
|||||||
`ffmpeg-python` takes care of running `ffmpeg` with the command-line arguments that correspond to the above filter diagram, and it's easy to what's going on and make changes as needed.
|
`ffmpeg-python` takes care of running `ffmpeg` with the command-line arguments that correspond to the above filter diagram, and it's easy to what's going on and make changes as needed.
|
||||||
|
|
||||||
Real-world signal graphs can get a heck of a lot more complex, but `ffmpeg-python` handles them with ease.
|
Real-world signal graphs can get a heck of a lot more complex, but `ffmpeg-python` handles them with ease.
|
||||||
|
|
@ -1,3 +1,3 @@
|
|||||||
[pytest]
|
[pytest]
|
||||||
testpaths = tests
|
testpaths = ffmpeg/tests
|
||||||
#norecursedirs = venv .git
|
#norecursedirs = venv .git
|
||||||
|
27
setup.py
Normal file
27
setup.py
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
from distutils.core import setup
|
||||||
|
setup(
|
||||||
|
name = 'ffmpeg-python',
|
||||||
|
packages = ['ffmpeg'],
|
||||||
|
version = '0.1',
|
||||||
|
description = 'FFmpeg Python wrapper 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/peterldowns/mypackage/archive/0.1.tar.gz',
|
||||||
|
keywords = [
|
||||||
|
'a/v',
|
||||||
|
'audio',
|
||||||
|
'dsp',
|
||||||
|
'FFmpeg',
|
||||||
|
'ffmpeg',
|
||||||
|
'ffprobe',
|
||||||
|
'filtering',
|
||||||
|
'render',
|
||||||
|
'signals',
|
||||||
|
'streaming',
|
||||||
|
'streams',
|
||||||
|
'video',
|
||||||
|
'wrapper',
|
||||||
|
],
|
||||||
|
classifiers = [],
|
||||||
|
)
|
Loading…
x
Reference in New Issue
Block a user