From owner-svn-ports-head@FreeBSD.ORG Fri Nov 29 20:23:40 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6F72C28A; Fri, 29 Nov 2013 20:23:40 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5B7D51DB4; Fri, 29 Nov 2013 20:23:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rATKNepO097211; Fri, 29 Nov 2013 20:23:40 GMT (envelope-from nox@svn.freebsd.org) Received: (from nox@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rATKNdZg097207; Fri, 29 Nov 2013 20:23:39 GMT (envelope-from nox@svn.freebsd.org) Message-Id: <201311292023.rATKNdZg097207@svn.freebsd.org> From: Juergen Lock Date: Fri, 29 Nov 2013 20:23:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r335221 - in head/multimedia: . livestreamer X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.16 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Nov 2013 20:23:40 -0000 Author: nox Date: Fri Nov 29 20:23:39 2013 New Revision: 335221 URL: http://svnweb.freebsd.org/changeset/ports/335221 Log: Add multimedia/livestreamer: Livestreamer is a Command Line Interface that pipes video streams from various services into a video player, such as VLC. The main purpose of Livestreamer is to allow the user to avoid buggy and CPU heavy flash plugins but still be able to enjoy various streamed content. Livestreamer is built upon a plugin system which allows support for new services to be easily added. Currently most of the big streaming services are supported, such as: Dailymotion Livestream Twitch/Justin.tv YouTube Live UStream Example use: $ livestreamer twitch.tv/day9tv best [cli][info] Found matching plugin justintv for URL twitch.tv/day9tv [cli][info] Opening stream: 720p [cli][info] Starting player: vlc WWW: https://github.com/chrippa/livestreamer Added: head/multimedia/livestreamer/ head/multimedia/livestreamer/Makefile (contents, props changed) head/multimedia/livestreamer/distinfo (contents, props changed) head/multimedia/livestreamer/pkg-descr (contents, props changed) Modified: head/multimedia/Makefile Modified: head/multimedia/Makefile ============================================================================== --- head/multimedia/Makefile Fri Nov 29 20:20:45 2013 (r335220) +++ head/multimedia/Makefile Fri Nov 29 20:23:39 2013 (r335221) @@ -202,6 +202,7 @@ SUBDIR += linux_dvbwrapper-kmod SUBDIR += linux_v4l2wrapper-kmod SUBDIR += lives + SUBDIR += livestreamer SUBDIR += lsdvd SUBDIR += lxdvdrip SUBDIR += m2tstoavi Added: head/multimedia/livestreamer/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/livestreamer/Makefile Fri Nov 29 20:23:39 2013 (r335221) @@ -0,0 +1,22 @@ +# Created by: Juergen Lock +# $FreeBSD$ + +PORTNAME= livestreamer +PORTVERSION= 1.7.0 +CATEGORIES= multimedia python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= multimedia@FreeBSD.org +COMMENT= Extract web streams and pipe them into video player of choice + +LICENSE= BSD + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=0:${PORTSDIR}/www/py-requests \ + ${PYTHON_PKGNAMEPREFIX}librtmp>=0:${PORTSDIR}/multimedia/py-librtmp + +USE_PYTHON= yes +USE_PYDISTUTILS= easy_install +PYDISTUTILS_AUTOPLIST= yes + +.include Added: head/multimedia/livestreamer/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/livestreamer/distinfo Fri Nov 29 20:23:39 2013 (r335221) @@ -0,0 +1,2 @@ +SHA256 (livestreamer-1.7.0.tar.gz) = 5c653cd3883349f97181ec36692983cebcfaf62c864692d365450d4300dc6067 +SIZE (livestreamer-1.7.0.tar.gz) = 86888 Added: head/multimedia/livestreamer/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/livestreamer/pkg-descr Fri Nov 29 20:23:39 2013 (r335221) @@ -0,0 +1,23 @@ +Livestreamer is a Command Line Interface that pipes video streams +from various services into a video player, such as VLC. The main +purpose of Livestreamer is to allow the user to avoid buggy and CPU +heavy flash plugins but still be able to enjoy various streamed +content. + +Livestreamer is built upon a plugin system which allows support for +new services to be easily added. Currently most of the big streaming +services are supported, such as: + Dailymotion + Livestream + Twitch/Justin.tv + YouTube Live + UStream + +Example use: + +$ livestreamer twitch.tv/day9tv best +[cli][info] Found matching plugin justintv for URL twitch.tv/day9tv +[cli][info] Opening stream: 720p +[cli][info] Starting player: vlc + +WWW: https://github.com/chrippa/livestreamer