1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

Python module to parse metadata in video files

You can parse any video file. If a parse error occurs, it will throw a
ParseError exception. To see what data has been parsed, you can print
the object.

WWW: https://github.com/Diaoul/enzyme

PR:		172889
Submitted by:	William Grzybowski <william88@gmail.com>

Feature safe:	yes
This commit is contained in:
Wen Heping 2012-10-25 07:13:12 +00:00
parent b2a5da53d1
commit b9ae6cb0ea
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=306371
4 changed files with 30 additions and 0 deletions

View File

@ -266,6 +266,7 @@
SUBDIR += pvrxxx
SUBDIR += pwcbsd
SUBDIR += pwcview
SUBDIR += py-enzyme
SUBDIR += py-gstreamer
SUBDIR += py-kaa-base
SUBDIR += py-kaa-imlib2

View File

@ -0,0 +1,20 @@
# Created by: William Grzybowski <william88@gmail.com>
# $FreeBSD$
PORTNAME= enzyme
PORTVERSION= 0.2
CATEGORIES= multimedia python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= william88@gmail.com
COMMENT= Python module to parse metadata in video files
LICENSE= GPLv3
USE_PYTHON= -2.7
USE_PYDISTUTILS=easy_install
PLIST_FILES= %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (enzyme-0.2.tar.gz) = b84de5c8d19e4f807d49e31f39f04a594d65e3e5d379a6ee98e29be0bacac3ac
SIZE (enzyme-0.2.tar.gz) = 70608

View File

@ -0,0 +1,7 @@
Python module to parse metadata in video files
You can parse any video file. If a parse error occurs, it will throw a
ParseError exception. To see what data has been parsed, you can print
the object.
WWW: https://github.com/Diaoul/enzyme