Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

ezstream-file(1) [debian man page]

EZSTREAM-FILE.SH(1)					    BSD General Commands Manual 				       EZSTREAM-FILE.SH(1)

NAME
ezstream-file -- script to stream files from the command line SYNOPSIS
ezstream-file [-hnqVv] [-T cfg_template] [file ...] DESCRIPTION
The ezstream-file script uses an ezstream configuration file template to stream a list of files given on the command line, or via standard input. In other words, filenames are written to a temporary playlist, and a template-based configuration is generated to stream them. The path to a configuration template must be provided, either by using the -T command line argument, or the EZSTREAM_TEMPLATE environment variable. The configuration template must be a valid playlist configuration, and contain the follwing configuration statement: <filename>%FILENAME%</filename> If no input files are specified, the list of files to be streamed are read from standard input. Lastly, the EZSTREAM environment variable allows to specify an alternate ezstream binary. Command line parameters -h Print a summary of available command line parameters with short descriptions and exit. -n (Passed to ezstream.) Normalize metadata strings by removing excess whitespaces. -q (Passed to ezstream.) Be more quiet. Suppress the output that external programs send to standard error. -T cfg_template Use the configuration in cfg_template, overriding the default set in the EZSTREAM_TEMPLATE environment variable. -V Print the ezstream-file version number and exit. -v (Passed to ezstream.) Produce more verbose output from ezstream. Use twice for even more verbose output. FILES
/usr/share/doc/ezstream/examples Directory containing example configuration files for various uses of ezstream, as well as example playlist and metadata scripts. SEE ALSO
ezstream(1) AUTHORS
The ezstream-file script and this manual were written by Moritz Grimm <mdgrimm@gmx.net>. ezstream 0.5.6 September 27, 2009 ezstream 0.5.6

Check Out this Related Man Page

ezstream(1)						      General Commands Manual						       ezstream(1)

NAME
ezstream -- easy media streaming client for icecast servers SYNOPSIS
ezstream [-h] [-c CONFIGFILE] DESCRIPTION
This manual page documents briefly the ezstream usage. This manual page was written for the Debian distribution because the original program does not have a manual page. Instead, it has docu- mentation in the GNU Info format; see below. ezstream is an audio and video streaming client which feeds any icecast server from MP3 or OGG (Vorbis, Theora) playlists without reencod- ing. On-the-fly reencoding of the input stream (FLAC for example) is also possible. ezstream also handles shoutcast metadatas. OPTIONS
These programs follow the usual GNU command line syntax, with long options starting with two dashes (`-'). A summary of options is included below. For a complete description, see the Info files. -h Show summary of options. -c CONFIGFILE Start ezstream with a config file. SEE ALSO
README informations in /usr/share/doc/ezstream/README.gz CONFIGFILE examples in /usr/share/doc/ezstream/examples/ icecast2 (http://icecast.org) AUTHOR
This manual page was written by Guillaume Pellerin <yomguy@altern.org> for the Debian system (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 any later version pub- lished by the Free Software Foundation. On Debian systems, the complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL. ezstream(1)
Man Page

15 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

remove whitespace and test

Hi, I know removing whitespaces I can found so many threads to read how it works and i did it, but my problem isn't solved... I have in my script a variable $1 which can contains a text like " Channel ". No I want to check if $1 contains the word Channel, but I don't know how many... (4 Replies)
Discussion started by: bensky
4 Replies

2. Shell Programming and Scripting

input parameters pls help!

Hi i am a newbie who is trying to input parameters into this script, but not sure where to start. The parameters that need to be input are the baseline label "abc.0111.BL " mantioned bellow, and database string "abc/abcp@db2 @counter.sql " Environment: Windows XP Running script: Cygwin 3.2 ... (2 Replies)
Discussion started by: yarik20
2 Replies

3. Shell Programming and Scripting

configuration and template file

Hi, I have a configuration file(which has values) and a template file(where the values are dummied) Configuration file (a.txt) -------------------- var1=1521 var2=172.10.10.10 var3=emp . . . var15=hhhhhhh Template file (b.txt) -------------------- The host name is $var2. The... (5 Replies)
Discussion started by: ammu
5 Replies

4. Shell Programming and Scripting

Match configuration files with a script

Hi all, Can you help me make a script(ksh-Solaris 8) that will match two configuration files? I have some problems with sed newline. The script should at least match the value of parameters from one file to another, which looks always like this: parameter1=some_value... (3 Replies)
Discussion started by: majormark
3 Replies

5. Homework & Coursework Questions

List Files and Directory

Use and complete the template provided. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data i need to list all files in date/time order that contain the word "alpha" but not the the word "beta". 2. Relevant equations find or ls ... (7 Replies)
Discussion started by: jeht
7 Replies

6. Shell Programming and Scripting

Remove whitespaces in the n first characters?

I assume removing whitespaces in the n first characters of a string would be an easy task for sed? If so, how? (7 Replies)
Discussion started by: KidCactus
7 Replies

7. Shell Programming and Scripting

TEST Command

Hello, I need help with a test command. Here is what I am trying to do : I've got an interactive script that check if configuration files exist on 2 different directories, then all configuration files are print on screen by a short name. My problem is when you type a "wrong name" or... (12 Replies)
Discussion started by: Aswex
12 Replies

8. Shell Programming and Scripting

SED - delete words between two possible words

Hi all, I want to make an script using sed that removes everything between 'begin' (including the line that has it) and 'end1' or 'end2', not removing this line. Let me paste an 2 examples: anything before any string begin few lines of content end1 anything after anything before any... (4 Replies)
Discussion started by: meuser
4 Replies

9. Shell Programming and Scripting

main file configuration

I was writing a script that will FTP files to destination folder. All configuration should be done through a properties files and the main script will read the values from the properties file. the properties file should contain 1) Source folders 2) Source file pattern 3) Destination folder... (4 Replies)
Discussion started by: rahulsxn660
4 Replies

10. Shell Programming and Scripting

Using redirect for input instead of command line

I have a script that is working when I input parameters from the command line. I was under the assumption that i could use a redirect for the input. script fred.sh: value1=$1 value2=$2 print $value1 $value2 Running from command line: fred.sh 1 2 1 2 Contents of file fred.txt:... (3 Replies)
Discussion started by: djm2112
3 Replies

11. Shell Programming and Scripting

Selective command line parameters.

Hi, I have a script which has 3 command line parameters.But sometimes it will also take 2 command line parameters or 1.How to do it? I am using $1,$2... to specify the command line parameters. The script which i have written is given below. #!/bin/sh echo "database="$1 echo... (3 Replies)
Discussion started by: arijitsaha
3 Replies

12. Shell Programming and Scripting

Inserting variable values in filename

Hi All, I have a directory containing multiple files. and also a txt file which contains the list of all filenames and certain values. I want to read the text file line by line and if its 2nd column is matched with the filename in directory, then it must insert the values in 7th column to... (14 Replies)
Discussion started by: CAch
14 Replies

13. Homework & Coursework Questions

Loop to Convert a list from an input file and output it to another file

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: A) Write a script, which will take input from a file and convert the number from Centigrade to Fahrenheit... (5 Replies)
Discussion started by: AliTheSnake
5 Replies

14. Homework & Coursework Questions

Script performs the right task but fails against check

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: Write a script checkFiles.sh that takes an arbitrary number of file paths from the command line and carries ... (5 Replies)
Discussion started by: Ezraek
5 Replies

15. Shell Programming and Scripting

Rename first N numeric strings in filename

Hello, I have some video files containing numbers and characters . To tell the problem shortly, due to a limitation, I am unable create a playlist regularly changing on a daily basis with the command shuffle....So I decided to rename filenames, just a replacement of first five numbers randomly.... (10 Replies)
Discussion started by: baris35
10 Replies