diff options
author | jmcneill <jmcneill@pkgsrc.org> | 2009-01-26 22:49:28 +0000 |
---|---|---|
committer | jmcneill <jmcneill@pkgsrc.org> | 2009-01-26 22:49:28 +0000 |
commit | 217fd782a7050da0652cb65cc7ba62d65873d1c0 (patch) | |
tree | 2b919e9345ab5afe6460a170916447178d07b809 | |
parent | c6c44c5b76918638216632b4c636e60b80a2a261 (diff) | |
download | pkgsrc-217fd782a7050da0652cb65cc7ba62d65873d1c0.tar.gz |
Import tstools version 1.11.
tstools is a set of cross-platform command line tools for working with MPEG
data.
The emphasis is on relatively simple tools which concentrate on MPEG (H.264 and
H.262) data packaged according to H.222 (i.e., TS or PS), with a particular
interest in checking for conformance.
Transport Stream (TS) is typically used for distribution of cable and satellite
data. Program Stream (PS) is typically used to store data on DVDs.
The tools are focused on:
* Quick reporting of useful data (tsinfo, stream_type)
* Giving a quick overview of the entities in the stream (esdots, psdots)
* Reporting on TS packets (tsreport) or ES units/frames/fields (esreport)
* Simple manipulation of stream data (es2ts, esfilter, esreverse, esmerge,
ts2es)
* Streaming of data, possibly with introduced errors (tsplay)
-rw-r--r-- | multimedia/tstools/DESCR | 18 | ||||
-rw-r--r-- | multimedia/tstools/Makefile | 46 | ||||
-rw-r--r-- | multimedia/tstools/PLIST | 19 | ||||
-rw-r--r-- | multimedia/tstools/distinfo | 5 |
4 files changed, 88 insertions, 0 deletions
diff --git a/multimedia/tstools/DESCR b/multimedia/tstools/DESCR new file mode 100644 index 00000000000..8d35c943db4 --- /dev/null +++ b/multimedia/tstools/DESCR @@ -0,0 +1,18 @@ +tstools is a set of cross-platform command line tools for working with MPEG +data. + +The emphasis is on relatively simple tools which concentrate on MPEG (H.264 and +H.262) data packaged according to H.222 (i.e., TS or PS), with a particular +interest in checking for conformance. + +Transport Stream (TS) is typically used for distribution of cable and satellite +data. Program Stream (PS) is typically used to store data on DVDs. + +The tools are focused on: + + * Quick reporting of useful data (tsinfo, stream_type) + * Giving a quick overview of the entities in the stream (esdots, psdots) + * Reporting on TS packets (tsreport) or ES units/frames/fields (esreport) + * Simple manipulation of stream data (es2ts, esfilter, esreverse, esmerge, + ts2es) + * Streaming of data, possibly with introduced errors (tsplay) diff --git a/multimedia/tstools/Makefile b/multimedia/tstools/Makefile new file mode 100644 index 00000000000..2af7dbd9f38 --- /dev/null +++ b/multimedia/tstools/Makefile @@ -0,0 +1,46 @@ +# $NetBSD: Makefile,v 1.1.1.1 2009/01/26 22:49:28 jmcneill Exp $ +# + +DISTNAME= tstools-1_11 +PKGNAME= ${DISTNAME:S/_/./} +CATEGORIES= multimedia +MASTER_SITES= http://download.berlios.de/tstools/ \ + http://download2.berlios.de/tstools/ +EXTRACT_SUFX= .tgz + +MAINTAINER= tech-multimedia@NetBSD.org +HOMEPAGE= http://tstools.berlios.de/ +COMMENT= Cross-platform command line tools for working with MPEG data + +PKG_DESTDIR_SUPPORT= user-destdir + +WRKSRC= ${WRKDIR}/${DISTNAME:S/_/./} +USE_TOOLS+= gmake + +TSPROGS=es2ts \ + esdots \ + esfilter \ + esmerge \ + esreport \ + esreverse \ + m2ts2ts \ + pcapreport \ + ps2ts \ + psdots \ + psreport \ + stream_type \ + ts2es \ + ts_packet_insert \ + tsinfo \ + tsplay \ + tsreport \ + tsserve + +do-install: + ${INSTALL_PROGRAM_DIR} ${DESTDIR}${PREFIX}/bin +.for tsprog in ${TSPROGS} + ${INSTALL_PROGRAM} ${WRKSRC}/bin/${tsprog} \ + ${DESTDIR}${PREFIX}/bin/${tsprog} +.endfor + +.include "../../mk/bsd.pkg.mk" diff --git a/multimedia/tstools/PLIST b/multimedia/tstools/PLIST new file mode 100644 index 00000000000..913d200b643 --- /dev/null +++ b/multimedia/tstools/PLIST @@ -0,0 +1,19 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2009/01/26 22:49:28 jmcneill Exp $ +bin/es2ts +bin/esdots +bin/esfilter +bin/esmerge +bin/esreport +bin/esreverse +bin/m2ts2ts +bin/pcapreport +bin/ps2ts +bin/psdots +bin/psreport +bin/stream_type +bin/ts2es +bin/ts_packet_insert +bin/tsinfo +bin/tsplay +bin/tsreport +bin/tsserve diff --git a/multimedia/tstools/distinfo b/multimedia/tstools/distinfo new file mode 100644 index 00000000000..bf8e2b77958 --- /dev/null +++ b/multimedia/tstools/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1.1.1 2009/01/26 22:49:28 jmcneill Exp $ + +SHA1 (tstools-1_11.tgz) = fb8e5f59fada384d2d7865f840a0ad28404bde81 +RMD160 (tstools-1_11.tgz) = f4fa0e3f49c9409096608a6bf3849c785de9d3f5 +Size (tstools-1_11.tgz) = 392616 bytes |