Date: Thu, 7 Feb 2019 23:13:39 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r492388 - in head/graphics: . py-imageio-ffmpeg Message-ID: <201902072313.x17NDdtp033028@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Thu Feb 7 23:13:39 2019 New Revision: 492388 URL: https://svnweb.freebsd.org/changeset/ports/492388 Log: Add py-imageio-ffmpeg 0.2.0 The purpose of this project is to provide a simple and reliable ffmpeg wrapper for working with video files. It takes care of producing platform-specific wheels that include the binary executables of ffmpeg. These can then be installed (and updated or uninstalled) easily with pip. It also provides simple generator functions for reading and writing data from/to ffmpeg, which reliably terminate the ffmpeg process when done. This library is used as the basis for the imageio ffmpeg plugin, but it can also be used by itself. Imageio provides a friendlier (higher level) API, and adds support for e.g. cameras and seeking. WWW: https://github.com/imageio/imageio-ffmpeg Added: head/graphics/py-imageio-ffmpeg/ head/graphics/py-imageio-ffmpeg/Makefile (contents, props changed) head/graphics/py-imageio-ffmpeg/distinfo (contents, props changed) head/graphics/py-imageio-ffmpeg/pkg-descr (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Thu Feb 7 22:36:06 2019 (r492387) +++ head/graphics/Makefile Thu Feb 7 23:13:39 2019 (r492388) @@ -844,6 +844,7 @@ SUBDIR += py-graphy SUBDIR += py-gvgen SUBDIR += py-imageio + SUBDIR += py-imageio-ffmpeg SUBDIR += py-imagesize SUBDIR += py-imgurpython SUBDIR += py-leather Added: head/graphics/py-imageio-ffmpeg/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-imageio-ffmpeg/Makefile Thu Feb 7 23:13:39 2019 (r492388) @@ -0,0 +1,22 @@ +# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= imageio-ffmpeg +PORTVERSION= 0.2.0 +CATEGORIES= graphics python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= FFMPEG wrapper for Python + +LICENSE= BSD2CLAUSE + +RUN_DEPENDS= ffmpeg:multimedia/ffmpeg + +USES= python:3.4+ +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/graphics/py-imageio-ffmpeg/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-imageio-ffmpeg/distinfo Thu Feb 7 23:13:39 2019 (r492388) @@ -0,0 +1,3 @@ +TIMESTAMP = 1549567303 +SHA256 (imageio-ffmpeg-0.2.0.tar.gz) = 2beacb11b121440cfd0bc0caf80da54a3729956002707251ab8e26d3e03933a4 +SIZE (imageio-ffmpeg-0.2.0.tar.gz) = 10865 Added: head/graphics/py-imageio-ffmpeg/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-imageio-ffmpeg/pkg-descr Thu Feb 7 23:13:39 2019 (r492388) @@ -0,0 +1,13 @@ +The purpose of this project is to provide a simple and reliable ffmpeg wrapper +for working with video files. It takes care of producing platform-specific +wheels that include the binary executables of ffmpeg. These can then be +installed (and updated or uninstalled) easily with pip. + +It also provides simple generator functions for reading and writing data from/to +ffmpeg, which reliably terminate the ffmpeg process when done. + +This library is used as the basis for the imageio ffmpeg plugin, but it can also +be used by itself. Imageio provides a friendlier (higher level) API, and adds +support for e.g. cameras and seeking. + +WWW: https://github.com/imageio/imageio-ffmpeg
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201902072313.x17NDdtp033028>