LinuxCommandLibrary

ffserver

deprecated HTTP/RTSP streaming server

TLDR

Start streaming server

$ ffserver -f [ffserver.conf]
copy
Run in background
$ ffserver -f [ffserver.conf] &
copy
Specify log level
$ ffserver -f [ffserver.conf] -loglevel [verbose]
copy

SYNOPSIS

ffserver [options]

DESCRIPTION

ffserver was an HTTP/RTSP streaming server included with ffmpeg. It received feeds from ffmpeg encoders and served them to clients, enabling live video streaming setups.
The server supported multiple streams and on-demand reencoding. Configuration defined input feeds from ffmpeg and output streams for clients with different formats and bitrates.
ffserver provided a complete streaming solution for webcams, screen capture, and video files.

PARAMETERS

-f FILE

Configuration file.
-n
No launch (parse config only).
-d
Debug mode.
-loglevel LEVEL
Log verbosity: quiet, error, warning, info, verbose.
--help
Display help information.

CONFIGURATION

ffserver.conf

Server configuration defining input feeds, output streams, formats, and bitrates.

CAVEATS

Deprecated and removed from ffmpeg in version 4.0. Use alternatives like nginx-rtmp or GStreamer. Configuration was complex.

HISTORY

ffserver was part of ffmpeg from early versions until its removal in 2018 (ffmpeg 4.0). It was deprecated due to maintenance burden, with recommendations to use dedicated streaming servers instead.

SEE ALSO

ffmpeg(1), nginx(1), vlc(1)

> TERMINAL_GEAR

Curated for the Linux community

Copied to clipboard

> TERMINAL_GEAR

Curated for the Linux community