1
0
Fork 0
Go to file
Moritz Grimm ce0d1ffaab Support configure args in gen-coverage-report.sh 2020-01-22 22:55:27 +01:00
.circleci CircleCI config.yml (WIP) 2020-01-19 01:29:26 +01:00
build-aux Untangle compatibility code 2015-02-27 22:42:51 +01:00
compat Add script to generate coverage reports using lcov. 2015-05-12 12:06:49 +02:00
doc Fix and simplify example cipher string 2020-01-22 16:42:09 +01:00
examples Fix and simplify example cipher string 2020-01-22 16:42:09 +01:00
m4 Depend on TagLib unconditionally 2016-04-22 15:56:30 +02:00
src Remove half-baked support for "passthrough encoders" 2020-01-15 23:04:40 +01:00
tests Remove old attempt at automating integration tests 2020-01-19 00:53:22 +01:00
.gitignore Add check unit testing framework w/ 2 dummy tests 2015-05-06 23:45:52 +02:00
.travis.yml After hitting the Coverity quota once, switch branches 2017-09-28 12:15:20 +02:00
COPYING Update GPLv2 text from https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt 2015-03-24 22:32:14 +01:00
ChangeLog Stop tracking history in ChangeLog, that's what Git is for 2015-01-07 23:42:24 +01:00
INSTALL Add INSTALL file for those not familiar with the configure+make dance. From 2007-02-24 20:58:18 +00:00
Makefile.am Remove obsolete VA_COPY check 2016-09-29 13:13:32 +02:00
NEWS Add configuration migration tool 2018-01-23 01:51:48 +01:00
README --enable-debug no longer exists 2017-11-23 18:22:34 +01:00
autogen.sh Update to automake 1.15 2020-01-19 00:26:46 +01:00
configure.ac Bump to 1.0.0 2020-01-15 23:31:10 +01:00
gen-coverage-report.sh Support configure args in gen-coverage-report.sh 2020-01-22 22:55:27 +01:00

README

ezstream README
---------------------------------------



ABOUT EZSTREAM
::::::::::::::::


Ezstream is a command line source client for Icecast media streaming servers.
It began as the successor of the old "shout" utility, and has since gained a
lot of useful features.

In its basic mode of operation, it streams media files or data from standard
input without re-encoding and thus requires only very little CPU resources. It
can also use various external decoders and encoders to re-encode from one
format to another, and stream the result to an Icecast server. With re-
encoding enabled, ezstream is a very flexible source client.

Supported media formats for streaming are MP3, Ogg Vorbis and Ogg Theora.
Ezstream natively supports metadata in MP3 (ID3v1 only) and Ogg Vorbis, or
many more formats when it is built with the TagLib option.

Ezstream is free software and licensed under the GNU General Public License.
See the COPYING file for details.



PREREQUISITES
:::::::::::::::


Ezstream depends on:
 * libshout 2.x
   (http://www.icecast.org/)
 * libxml 2.x
   (http://xmlsoft.org/)
 * TagLib 1.x (1.4 or newer recommended, will be used via the libtag_c
   wrapper)
   (https://taglib.github.io/)
 * Check Unit testing framework for C
   (https://libcheck.github.io/check)

Ezstream optionally uses:
 - For basic non-ASCII charset support in metadata and filenames:
   * Libiconv, if iconv() is not available in the system libc.
     (https://www.gnu.org/software/libiconv/)



INSTALLATION
::::::::::::::


The ezstream software uses the GNU auto-tools to configure, build and install
on a variety of systems. Aside from the standard autoconf options of the
configure script, a couple of additional options are available:

  --enable-examplesdir=DIR
                          example configuration files installation directory
                          (default: DATADIR/examples/ezstream)
  --with-libshout=PFX     prefix where the libshout header files and library
                          are installed (default: autodetect)
  --with-libshout-includes=DIR
                          directory where libshout header files are installed
                          (optional)
  --with-libshout-libs=DIR
                          directory where libshout is installed (optional)
  --with-libxml2=PFX      prefix where the libxml2 header files and library
                          are installed (default: autodetect)
  --with-libxml2-includes=DIR
                          directory where libxml2 header files are installed
                          (optional)
  --with-libxml2-libs=DIR directory where libxml2 is installed (optional)
  --with-taglib=PFX       prefix where the TagLib header files and library are
                          installed (default: autodetect)
  --with-taglib-includes=DIR
                          directory where TagLib header files are installed
                          (optional)
  --with-taglib-libs=DIR  directory where TagLib is installed (optional)
  --with-libvorbis=PFX    prefix where the Vorbis library header files and
                          library are installed (default: autodetect)
  --with-libvorbis-includes=DIR
                          directory where Vorbis library header files are
                          installed (optional)
  --with-libvorbis-libs=DIR
                          directory where the Vorbis libraries are installed
                          (optional)
  --with-libiconv-prefix[=DIR]  search for libiconv in DIR/include and DIR/lib
  --without-libiconv-prefix     don't search for libiconv in includedir and libdir

The compilation and installation process then boils down to the usual

    $ ./configure --help | less         # Skim over the available options
    $ ./configure [options] && make && [sudo] make install
                                        # Configure, build and install
                                        # [as root] the software

If this procedure is unfamiliar to you, please consult the INSTALL file for
more detailed instructions.

On systems where the libshout installation does not include the required
shout.pc file for pkg-config(1), the non-standard ``shout-config'' utility
is available. However, the ezstream build system does not support the latter.

If this is an issue, configure ezstream with

    $ ./configure \
        LIBSHOUT_CPPFLAGS="$(shout-config --cppflags)" \
        LIBSHOUT_CFLAGS="$(shout-config --cflags-only)" \
        LIBSHOUT_LIBS="$(shout-config --libs)"

When the configuration keeps failing despite having all dependencies
installed, take note of the more verbose error messages in config.log. If
necessary, it is possible to further customize many build flags through
environment variables. See the "influential environment variables" list
in the --help output.

To bootstrap a fresh checkout from source control, run the `autogen.sh`
script.



USAGE
:::::::


Once ezstream is successfully installed, type "man ezstream" (without quotes)
on the command line for a comprehensive manual. This distribution package also
comes with example configuration files that can be used as a guide to
configure ezstream.

Note that all by itself, ezstream is not particularly useful. It requires a
running Icecast server to stream to, which then relays the stream to many
listeners. If this comes as a surprise, browse to http://www.icecast.org/ for
a lot more information, resources, and other source clients.



EXTERNAL DECODERS/ENCODERS
::::::::::::::::::::::::::::


Ezstream should be able to work with any media decoder and encoder that
fulfills the following requirements:

 1. It needs to be executable on the command line and not require a graphical
    display to function.
 2.1. A decoder needs to be capable of sending RAW data to standard output.
 2.2. An encoder needs to be capable of reading RAW data from standard input.
 2.3. A combined de-/encoder needs to be capable of sending media data that
      can be streamed to standard output.

Media formats that ezstream does not support directly are passed through
unaltered. Whether they work or not depends on the level of support offered by
the version of libshout ezstream is linked with.

The following incomplete list of programs shows a few that are known to work.
These are also used in the example configuration files:

 * MP3
   - Decoder: madplay (http://mad.sf.net/)
   - Encoder: lame (http://lame.sf.net/)

 * Ogg Vorbis:
   - Decoder: oggdec
   - Encoder: oggenc
   Both utilities are in the vorbis-tools package (http://www.vorbis.com/).

 * FLAC:
   - Decoder: flac (http://flac.sf.net/)
   - Encoder: (None. Not supported by libshout at the time of writing, and
              thus cannot be used by ezstream.)

 * Ogg Theora:
   - Decoder/Encoder: ffmpeg2theora (http://v2v.cc/~j/ffmpeg2theora/)



DEVELOPMENT
:::::::::::::


 * GitHub mirror: https://github.com/xiph/ezstream

 * Travis CI: https://travis-ci.org/xiph/ezstream

 * CircleCI: https://circleci.com/gh/xiph/ezstream

 * Codecov: https://codecov.io/gh/xiph/ezstream

 * Codacy: https://www.codacy.com/app/mgrimm/ezstream

 * Coverity: https://scan.coverity.com/projects/xiph-ezstream