From ProventusNova DeveloperWiki
GStreamer Daemon
GStreamer Daemon (gst-daemon) is a service that allows remote control and management of GStreamer pipelines using a JSON-RPC API. This enables dynamic pipeline creation, modification, and execution without restarting applications.
π Features
- Remote control over pipelines via TCP/IP.
- Supports multiple pipelines simultaneously.
- JSON-RPC based API for pipeline manipulation.
π How It Works
GStreamer Daemon acts as a server that listens for commands over a network interface. It provides an easy way to create, modify, and control media pipelines remotely.
π‘ Use Cases
- Embedded Systems** β Remote video processing without local UI.
- AI & Computer Vision** β Dynamically changing streams based on AI inference.
- Cloud Streaming** β Managing video pipelines in real-time on cloud-based servers.
π Example Commands
Create and run a pipeline:
gst-client pipeline_create test_pipeline "videotestsrc ! autovideosink"
gst-client play test_pipeline
Stop the pipeline:
gst-client stop test_pipeline