Linux command
ffserver 命令
文本
复制后可按需替换文件名、目录或参数。
常用示例
Start streaming server
ffserver -f [ffserver.conf]
Run in background
ffserver -f [ffserver.conf] &
Specify log level
ffserver -f [ffserver.conf] -loglevel [verbose]
说明
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.
参数
- -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.
FAQ
What is the ffserver command used for?
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.
How do I run a basic ffserver example?
Run `ffserver -f [ffserver.conf]` in a terminal, then adjust file names, paths, flags, or remote targets for your system.
What does -f _FILE_ do in ffserver?
Configuration file.