Date: Fri, 29 Nov 2013 20:23:39 +0000 (UTC) From: Juergen Lock <nox@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r335221 - in head/multimedia: . livestreamer Message-ID: <201311292023.rATKNdZg097207@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <nox@FreeBSD.org> +# $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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201311292023.rATKNdZg097207>