{"id":19166586,"url":"https://github.com/teltek/gst-plugin-ndi","last_synced_at":"2025-04-15T06:53:09.816Z","repository":{"id":34149840,"uuid":"149255980","full_name":"teltek/gst-plugin-ndi","owner":"teltek","description":"GStreamer NDI Plugin for Linux","archived":false,"fork":false,"pushed_at":"2022-06-22T10:07:50.000Z","size":435,"stargazers_count":165,"open_issues_count":43,"forks_count":28,"subscribers_count":14,"default_branch":"master","last_synced_at":"2025-04-15T06:53:03.915Z","etag":null,"topics":["gstreamer","gstreamer-plugins","newtek-ndi","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-2.1","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/teltek.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-09-18T08:41:16.000Z","updated_at":"2025-04-01T23:24:47.000Z","dependencies_parsed_at":"2022-06-27T11:18:29.192Z","dependency_job_id":null,"html_url":"https://github.com/teltek/gst-plugin-ndi","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/teltek%2Fgst-plugin-ndi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/teltek%2Fgst-plugin-ndi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/teltek%2Fgst-plugin-ndi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/teltek%2Fgst-plugin-ndi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/teltek","download_url":"https://codeload.github.com/teltek/gst-plugin-ndi/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249023711,"owners_count":21199958,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["gstreamer","gstreamer-plugins","newtek-ndi","rust"],"created_at":"2024-11-09T09:33:37.247Z","updated_at":"2025-04-15T06:53:09.798Z","avatar_url":"https://github.com/teltek.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"GStreamer NDI Plugin for Linux\n====================\n\n*Compiled and tested with NDI SDK 4.0, 4.1 and 5.0*\n\nThis is a plugin for the [GStreamer](https://gstreamer.freedesktop.org/) multimedia framework that allows GStreamer to receive a stream from a [NDI](https://www.newtek.com/ndi/) source. This plugin has been developed by [Teltek](http://teltek.es/) and was funded by the [University of the Arts London](https://www.arts.ac.uk/) and [The University of Manchester](https://www.manchester.ac.uk/).\n\nCurrently the plugin has a source element for receiving from NDI sources, a sink element to provide an NDI source and a device provider for discovering NDI sources on the network.\n\nSome examples of how to use these elements from the command line:\n\n```console\n# Information about the elements\n$ gst-inspect-1.0 ndi\n$ gst-inspect-1.0 ndisrc\n$ gst-inspect-1.0 ndisink\n\n# Discover all NDI sources on the network\n$ gst-device-monitor-1.0 -f Source/Network:application/x-ndi\n\n# Audio/Video source pipeline\n$ gst-launch-1.0 ndisrc ndi-name=\"GC-DEV2 (OBS)\" ! ndisrcdemux name=demux   demux.video ! queue ! videoconvert ! autovideosink  demux.audio ! queue ! audioconvert ! autoaudiosink\n\n# Audio/Video sink pipeline\n$ gst-launch-1.0 videotestsrc is-live=true ! video/x-raw,format=UYVY ! ndisinkcombiner name=combiner ! ndisink ndi-name=\"My NDI source\"  audiotestsrc is-live=true ! combiner.audio\n```\n\nFeel free to contribute to this project. Some ways you can contribute are:\n* Testing with more hardware and software and reporting bugs\n* Doing pull requests.\n\nCompilation of the NDI element\n-------\nTo compile the NDI element it's necessary to install Rust, the NDI SDK and the following packages for gstreamer:\n\n```console\n$ apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev \\\n      gstreamer1.0-plugins-base\n\n```\nTo install the required NDI library there are two options:\n1. Download NDI SDK from NDI website and move the library to the correct location.\n2. Use a [deb package](https://github.com/Palakis/obs-ndi/releases/download/4.5.2/libndi3_3.5.1-1_amd64.deb) made by the community. Thanks to [NDI plugin for OBS](https://github.com/Palakis/obs-ndi).\n\nTo install Rust, you can follow their documentation: https://www.rust-lang.org/en-US/install.html\n\nOnce all requirements are met, you can build the plugin by executing the following command from the project root folder:\n\n```\ncargo build\nexport GST_PLUGIN_PATH=`pwd`/target/debug\ngst-inspect-1.0 ndi\n```\n\nBy default GStreamer 1.18 is required, to use an older version. You can build with `$ cargo build --no-default-features --features whatever_you_want_to_enable_of_the_above_features`\n      \n\nIf all went ok, you should see info related to the NDI element. To make the plugin available without using `GST_PLUGIN_PATH` it's necessary to copy the plugin to the gstreamer plugins folder.\n\n```console\n$ cargo build --release\n$ sudo install -o root -g root -m 644 target/release/libgstndi.so /usr/lib/x86_64-linux-gnu/gstreamer-1.0/\n$ sudo ldconfig\n$ gst-inspect-1.0 ndi\n```\n\nMore info about GStreamer plugins written in Rust:\n----------------------------------\nhttps://gitlab.freedesktop.org/gstreamer/gstreamer-rs\nhttps://gitlab.freedesktop.org/gstreamer/gst-plugins-rs\n\n\nLicense\n-------\nThis plugin is licensed under the LGPL - see the [LICENSE](LICENSE) file for details\n\n\nAcknowledgments\n-------\n* University of the Arts London and The University of Manchester.\n* Sebastian Dröge (@sdroege).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fteltek%2Fgst-plugin-ndi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fteltek%2Fgst-plugin-ndi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fteltek%2Fgst-plugin-ndi/lists"}