svn commit: r459121 - in head/audio: . py-wavio

Yuri Victorovich yuri at FreeBSD.org
Mon Jan 15 21:56:46 UTC 2018


Author: yuri
Date: Mon Jan 15 21:56:45 2018
New Revision: 459121
URL: https://svnweb.freebsd.org/changeset/ports/459121

Log:
  audio/py-wavio: Python module for reading and writing WAV files using numpy arrays
  
  Submitted by:	myself
  Approved by:	tcberner (mentor)
  Differential Revision:	https://reviews.freebsd.org/D13914

Added:
  head/audio/py-wavio/
  head/audio/py-wavio/Makefile   (contents, props changed)
  head/audio/py-wavio/distinfo   (contents, props changed)
  head/audio/py-wavio/pkg-descr   (contents, props changed)
Modified:
  head/audio/Makefile

Modified: head/audio/Makefile
==============================================================================
--- head/audio/Makefile	Mon Jan 15 21:42:38 2018	(r459120)
+++ head/audio/Makefile	Mon Jan 15 21:56:45 2018	(r459121)
@@ -687,6 +687,7 @@
     SUBDIR += py-speex
     SUBDIR += py-tagpy
     SUBDIR += py-vorbis
+    SUBDIR += py-wavio
     SUBDIR += py-xmms2
     SUBDIR += pytone
     SUBDIR += qjackctl

Added: head/audio/py-wavio/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/py-wavio/Makefile	Mon Jan 15 21:56:45 2018	(r459121)
@@ -0,0 +1,20 @@
+# $FreeBSD$
+
+PORTNAME=	wavio
+DISTVERSION=	0.0.3
+CATEGORIES=	audio python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	yuri at FreeBSD.org
+COMMENT=	Python module for reading and writing WAV files using numpy arrays
+
+LICENSE=	BSD2CLAUSE
+
+RUN_DEPENDS=	${PYNUMPY}
+
+USES=		python
+USE_PYTHON=	distutils autoplist
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/audio/py-wavio/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/py-wavio/distinfo	Mon Jan 15 21:56:45 2018	(r459121)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1516011069
+SHA256 (wavio-0.0.3.tar.gz) = 8db5413db700915bfd649ba912bc4ddbae632713f780fb7a19ce00ad995d85f7
+SIZE (wavio-0.0.3.tar.gz) = 7008

Added: head/audio/py-wavio/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/py-wavio/pkg-descr	Mon Jan 15 21:56:45 2018	(r459121)
@@ -0,0 +1,7 @@
+wavio is a Python module that defines two functions:
+* wavio.read reads a WAV file and returns an object that holds the sampling
+  rate, sample width (in bytes), and a numpy array containing the data.
+* wavio.write writes a numpy array to a WAV file, optionally using a specified
+  sample width.
+
+WWW: https://github.com/WarrenWeckesser/wavio


More information about the svn-ports-all mailing list