All Projects → microsoft → auteur

microsoft / auteur

Licence: MIT License
Live GStreamer node compositor service, implemented in rust

Programming Languages

rust
11053 projects
python
139335 projects - #7 most used programming language
Dockerfile
14818 projects

Projects that are alternatives of or similar to auteur

Brave
Basic Real-time AV Editor - allowing you to preview, mix, and route live audio and video streams on the cloud
Stars: ✭ 474 (+1875%)
Mutual labels:  gstreamer, multimedia, rtmp, live-streaming
webrtcsink
All-batteries included GStreamer WebRTC producer
Stars: ✭ 18 (-25%)
Mutual labels:  gstreamer, multimedia, live-streaming
Srs
SRS is a simple, high efficiency and realtime video server, supports RTMP, WebRTC, HLS, HTTP-FLV, SRT and GB28181.
Stars: ✭ 16,734 (+69625%)
Mutual labels:  multimedia, rtmp, live-streaming
streamdelay
A delay + dump button for live streams, allowing screening and redaction of explict content.
Stars: ✭ 31 (+29.17%)
Mutual labels:  gstreamer, rtmp
Nginx Rtmp Docker
Docker image with Nginx using the nginx-rtmp-module module for live multimedia (video) streaming.
Stars: ✭ 506 (+2008.33%)
Mutual labels:  multimedia, rtmp
Ffmpeg
Mirror of https://git.ffmpeg.org/ffmpeg.git
Stars: ✭ 27,382 (+113991.67%)
Mutual labels:  multimedia, rtmp
Nginx Http Flv Module
Media streaming server based on nginx-rtmp-module. In addtion to the features nginx-rtmp-module provides, HTTP-FLV, GOP cache and VHOST (one IP for multi domain names) are supported now.
Stars: ✭ 2,063 (+8495.83%)
Mutual labels:  rtmp, live-streaming
Dockerfiles
Optimized media, analytics and graphics software stack images. Use the dockerfile(s) in your project or as a recipe book for bare metal installation.
Stars: ✭ 98 (+308.33%)
Mutual labels:  gstreamer, rtmp
Gstreamer Rs
GStreamer bindings for Rust - This repository moved to https://gitlab.freedesktop.org/gstreamer/gstreamer-rs
Stars: ✭ 319 (+1229.17%)
Mutual labels:  gstreamer, multimedia
vscode-extension
Link your code and commits to a video recording and explain your code with video.
Stars: ✭ 67 (+179.17%)
Mutual labels:  rtmp, live-streaming
Gstreamer Rockchip
The Gstreamer hardware encoder/decoder plugins for Rockchip platform
Stars: ✭ 86 (+258.33%)
Mutual labels:  gstreamer, multimedia
gstreamer-rtc-streamer
webrtc streamer based on gstreamer
Stars: ✭ 65 (+170.83%)
Mutual labels:  gstreamer, rtmp
Media Server
A brpc-based server to host and proxy live streams
Stars: ✭ 175 (+629.17%)
Mutual labels:  rtmp, live-streaming
Srt
Secure, Reliable, Transport
Stars: ✭ 1,898 (+7808.33%)
Mutual labels:  multimedia, live-streaming
Bigbluebutton Livestreaming
Streams a given BBB Meeting to an RTMP Server.
Stars: ✭ 145 (+504.17%)
Mutual labels:  rtmp, live-streaming
iShow-RN
A live streaming app demo using react-native-nodemediaclient.
Stars: ✭ 33 (+37.5%)
Mutual labels:  rtmp, live-streaming
Docker Nginx Rtmp
🐋 A Dockerfile for nginx-rtmp-module + FFmpeg from source with basic settings for streaming HLS. Built on Alpine Linux.
Stars: ✭ 608 (+2433.33%)
Mutual labels:  rtmp, live-streaming
Javelin
[Mirror] RTMP streaming server written in Rust
Stars: ✭ 77 (+220.83%)
Mutual labels:  rtmp, live-streaming
Gst Plugin Rs
Rust crate for writing GStreamer plugins and various plugins - This repository moved to https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs
Stars: ✭ 63 (+162.5%)
Mutual labels:  gstreamer, multimedia
gstcefsrc
A simple gstreamer wrapper around Chromium Embedded Framework
Stars: ✭ 46 (+91.67%)
Mutual labels:  gstreamer, multimedia

Auteur CI

Auteur

The current scope of this project is that of a basic live node compositor, with a service exposing a JSON API for creating, connecting, inspecting, scheduling and removing GStreamer processing nodes (sources, mixers and destinations as of writing).

It can be used for things like linear video feeds that allow hotswapping inputs/sources and compositing them based on a schedule (cue time and duration). As well as fail-over to backup content when a source is unavailable.

An example client running commands one at a time is provided for exploring that API.

Read the documentation

Environment

This project depends on:

  • Rust (stable channel)

  • GStreamer (master as of writing)

  • gst-plugins-rs (master as of writing)

The most convenient testing platform for this PoC is a Linux machine, https://gitlab.freedesktop.org/gstreamer/gst-build, enter a devenv then build https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/ and export GST_PLUGIN_PATH:

export GST_PLUGIN_PATH=$GST_PLUGIN_PATH:/path/to/gst-plugins-rs/target/debug

A few GStreamer plugins are needed, make sure to install the dependencies for all of those before building gst-build:

git grep "make_element(" | cut -d '"' -f 2 | sort -u

Building

cargo build

Running

Run the service:

AUTEUR_LOG=debug cargo run --bin auteur

Explore and test the API with the client:

cargo run --bin auteur-controller -- help

You can also find the API definition in common/src/controller.rs.

In addition, a simple wrapper script around the controller can be found in scripts/node_schedule.py, alongside other scripts that leverage it to demonstrate other features (eg scripts/crossfade.py)

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.

When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.

Trademarks

This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft's Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party's policies.

License

All code in this repository is licensed under the MIT license.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].