Date: Mon, 6 May 2019 05:05:23 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r500893 - in head/audio: . py-webrtcvad Message-ID: <201905060505.x4655Nm9056877@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Mon May 6 05:05:23 2019 New Revision: 500893 URL: https://svnweb.freebsd.org/changeset/ports/500893 Log: New port: audio/py-webrtcvad: Interface to the Google WebRTC Voice Activity Detector (VAD) Added: head/audio/py-webrtcvad/ head/audio/py-webrtcvad/Makefile (contents, props changed) head/audio/py-webrtcvad/distinfo (contents, props changed) head/audio/py-webrtcvad/pkg-descr (contents, props changed) Modified: head/audio/Makefile Modified: head/audio/Makefile ============================================================================== --- head/audio/Makefile Mon May 6 04:42:03 2019 (r500892) +++ head/audio/Makefile Mon May 6 05:05:23 2019 (r500893) @@ -696,6 +696,7 @@ SUBDIR += py-tagpy SUBDIR += py-vorbis SUBDIR += py-wavio + SUBDIR += py-webrtcvad SUBDIR += py-xmms2 SUBDIR += pytone SUBDIR += qjackctl Added: head/audio/py-webrtcvad/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/py-webrtcvad/Makefile Mon May 6 05:05:23 2019 (r500893) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= webrtcvad +DISTVERSION= 2.0.10 +CATEGORIES= audio python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Interface to the Google WebRTC Voice Activity Detector (VAD) + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= python +USE_PYTHON= distutils autoplist + +.include <bsd.port.mk> Added: head/audio/py-webrtcvad/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/py-webrtcvad/distinfo Mon May 6 05:05:23 2019 (r500893) @@ -0,0 +1,3 @@ +TIMESTAMP = 1557118841 +SHA256 (webrtcvad-2.0.10.tar.gz) = f1bed2fb25b63fb7b1a55d64090c993c9c9167b28485ae0bcdd81cf6ede96aea +SIZE (webrtcvad-2.0.10.tar.gz) = 66156 Added: head/audio/py-webrtcvad/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/py-webrtcvad/pkg-descr Mon May 6 05:05:23 2019 (r500893) @@ -0,0 +1,7 @@ +A python interface to the WebRTC Voice Activity Detector (VAD). +A VAD classifies a piece of audio data as being voiced or unvoiced. It can be +useful for telephony and speech recognition. +The VAD that Google developed for the WebRTC project is reportedly one of the +best available, being fast, modern and free. + +WWW: https://github.com/wiseman/py-webrtcvad
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905060505.x4655Nm9056877>