Scroll to navigation

LIQUIDSOAP(1) Liquidsoap @version@ LIQUIDSOAP(1)

NAME

liquidsoap - a multimedia streaming language

SYNOPSIS

liquidsoap [ options ] [ script | expression ]

DESCRIPTION

Liquidsoap is a programming language for describing multimedia streaming systems. It is very flexible, making simple things simple but giving a lot of control for advanced uses. Liquidsoap supports audio, video and MIDI streams, and a wide range of input/output operators including Icecast and various soundcard APIs. It can perform a broad range of signal processing, combine streams in various ways, support custom transitions, generate sound procedurally... and all this can be assembled as you wish. Input files can be accessed remotely, or even be synthesized on the fly using external scripts such as speech synthesis. Finally, interaction with a running liquidsoap instance is possible via telnet or socket.

Liquidsoap scripts passed on the command line will be evaluated: they shall be used to define the streaming system to be ran. It is possible to pass multiple scripts; they will all be ran successively, and definitions from one script can be used in subsequent ones. A script will be read from standard input if - is given as script filename. Information about scripting liquidsoap is available on our website: http://liquidsoap.info/.

If the parameter is not a file it will be treated as an expression which will be executed. It is a convenient way to test simple one-line scripts. When running only one-liners, the default is to log messages directly on stdout rather than to a file.

OPTIONS

-
Read script from standard input.
--
Stop parsing the command-line and pass subsequent items to the script.
Display liquidsoap’s build configuration.
Parse, type-check and save script’s cache but do no run it.
Generate the standard library cache.
Print debugging log messages.
--debug-errors
Debug errors (show stacktrace instead of printing a message).
--debug-lang
Debug language implementation.
--debug-levels
Debug typing levels.
--debug-subtyping
Debug subtyping.
Do not load wrappers for deprecated operators.
Load wrappers for deprecated operators.
Start an interactive interpreter.
Documentation of all deprecated functions in markdown.
Documentation of all extra functions in markdown.
List all functions.
List all functions, sorted by category.
Documentation of all functions in JSON format.
Documentation of all functions in markdown format.
List all plugins (builtin scripting values, supported formats and protocols).
List all available portaudio devices
Documentation of all protocols in markdown.
Display configuration keys in markdown format.
Disable cache
Deprecated: use --disable-deprecated
Disable external plugins.
Ignore fallible sources.
Do not load stdlib script libraries
Print out opam’s liquidsoap.config, for internal use.
Parse and output the script as normalized JSON. The JSON format is used internally to format code.
Profile execution.
In normal executions, exceptions raised during the script are translated into user-friendly errors. Use this option to let the original error surface. This is useful when debugging.
Disable the effects of --unsafe.
Override the location of the standard library.
Execute script code in strict mode, issuing fatal errors instead of warnings in some cases. Currently: unused variables and ignored expressions.
Faster startup using unsafe features.
Display liquidsoap’s version.

-T --disable-telnet : Disable the telnet server.

-U --disable-unix-socket : Disable the unix socket.

-c --check : Parse, type-check but do not evaluate the script.

-d --daemon : Run in daemon mode.

-f --force-start : For advanced dynamic uses: force liquidsoap to start even when no active source is initially defined.

Get help about a scripting value: source, operator, builtin or library function, etc.
Display inferred types.

-p --parse-only : Parse script but do not type-check and run them.

-q --quiet : Do not print log messages on standard output.

-r --request : Process a file request and print the metadata.

-t --enable-telnet : Enable the telnet server.

-u --enable-unix-socket : Enable the unix socket.

-v --verbose : Print log messages on standard output.

-help Display this list of options --help Display this list of options

SEE ALSO

Our website http://liquidsoap.info/ and the HTML documentation coming with your distribution of Liquidsoap.

AUTHOR

The savonet team.

July 24, 2019 Liquidsoap @version@