├── .gitattributes
├── .gitignore
├── code-of-conduct.md
├── contributing.md
├── license
├── media
├── apple.svg
├── linux.svg
└── windows.svg
└── readme.md
/.gitattributes:
--------------------------------------------------------------------------------
1 | * text=auto
2 | readme.md merge=union
3 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 |
2 | .yo-rc.json
3 |
--------------------------------------------------------------------------------
/code-of-conduct.md:
--------------------------------------------------------------------------------
1 | # Contributor Covenant Code of Conduct
2 |
3 | ## Our Pledge
4 |
5 | In the interest of fostering an open and welcoming environment, we as
6 | contributors and maintainers pledge to making participation in our project and
7 | our community a harassment-free experience for everyone, regardless of age, body
8 | size, disability, ethnicity, gender identity and expression, level of experience,
9 | nationality, personal appearance, race, religion, or sexual identity and
10 | orientation.
11 |
12 | ## Our Standards
13 |
14 | Examples of behavior that contributes to creating a positive environment
15 | include:
16 |
17 | * Using welcoming and inclusive language
18 | * Being respectful of differing viewpoints and experiences
19 | * Gracefully accepting constructive criticism
20 | * Focusing on what is best for the community
21 | * Showing empathy towards other community members
22 |
23 | Examples of unacceptable behavior by participants include:
24 |
25 | * The use of sexualized language or imagery and unwelcome sexual attention or
26 | advances
27 | * Trolling, insulting/derogatory comments, and personal or political attacks
28 | * Public or private harassment
29 | * Publishing others' private information, such as a physical or electronic
30 | address, without explicit permission
31 | * Other conduct which could reasonably be considered inappropriate in a
32 | professional setting
33 |
34 | ## Our Responsibilities
35 |
36 | Project maintainers are responsible for clarifying the standards of acceptable
37 | behavior and are expected to take appropriate and fair corrective action in
38 | response to any instances of unacceptable behavior.
39 |
40 | Project maintainers have the right and responsibility to remove, edit, or
41 | reject comments, commits, code, wiki edits, issues, and other contributions
42 | that are not aligned to this Code of Conduct, or to ban temporarily or
43 | permanently any contributor for other behaviors that they deem inappropriate,
44 | threatening, offensive, or harmful.
45 |
46 | ## Scope
47 |
48 | This Code of Conduct applies both within project spaces and in public spaces
49 | when an individual is representing the project or its community. Examples of
50 | representing a project or community include using an official project e-mail
51 | address, posting via an official social media account, or acting as an appointed
52 | representative at an online or offline event. Representation of a project may be
53 | further defined and clarified by project maintainers.
54 |
55 | ## Enforcement
56 |
57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be
58 | reported by contacting the project team at Floris@hologfx.io. All
59 | complaints will be reviewed and investigated and will result in a response that
60 | is deemed necessary and appropriate to the circumstances. The project team is
61 | obligated to maintain confidentiality with regard to the reporter of an incident.
62 | Further details of specific enforcement policies may be posted separately.
63 |
64 | Project maintainers who do not follow or enforce the Code of Conduct in good
65 | faith may face temporary or permanent repercussions as determined by other
66 | members of the project's leadership.
67 |
68 | ## Attribution
69 |
70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71 | available at [http://contributor-covenant.org/version/1/4][version]
72 |
73 | [homepage]: http://contributor-covenant.org
74 | [version]: http://contributor-covenant.org/version/1/4/
75 |
--------------------------------------------------------------------------------
/contributing.md:
--------------------------------------------------------------------------------
1 | # Contribution Guidelines
2 |
3 | Please note that this project is released with a [Contributor Code of Conduct](code-of-conduct.md). By participating in this project you agree to abide by its terms.
4 |
5 | ---
6 |
7 | Ensure your pull request adheres to the following guidelines:
8 |
9 | - **The submitted project should be more than 30 days old.**
10 | - Search previous suggestions before making a new one, as yours may be a duplicate.
11 | - Make an individual pull request for each suggestion.
12 | - Adhere to the format followed in the list
13 | - Additions should be added to the bottom of the relevant category for paid software, and at the bottom of the free part of the category for free or open source software.
14 | - Keep descriptions short and simple, but descriptive.
15 | - Don't start the description with `A` or `An`.
16 | - Check your spelling and grammar.
17 | - Make sure your text editor is set to remove trailing whitespace.
18 | - The pull request should have a useful title and include a link to the project and why it should be included.
19 | - New categories or improvements to the existing categorization are welcome, but should be done in a separate pull request.
20 |
21 | Thank you for your suggestion!
22 |
23 | ### Updating your PR
24 |
25 | A lot of times, making a PR adhere to the standards above can be difficult. If the maintainers notice anything that we'd like changed, we'll ask you to edit your PR before we merge it. If you're not sure how to do that, [here is a guide](https://github.com/RichardLitt/knowledge/blob/master/github/amending-a-commit-guide.md) on the different ways you can update your PR so that we can merge it.
26 |
--------------------------------------------------------------------------------
/license:
--------------------------------------------------------------------------------
1 | CC0 1.0 Universal
2 |
3 | Statement of Purpose
4 |
5 | The laws of most jurisdictions throughout the world automatically confer exclusive Copyright and Related Rights (defined below) upon the creator and subsequent owner(s) (each and all, an "owner") of an original work of authorship and/or a database (each, a "Work").
6 |
7 | Certain owners wish to permanently relinquish those rights to a Work for the purpose of contributing to a commons of creative, cultural and scientific works ("Commons") that the public can reliably and without fear of later claims of infringement build upon, modify, incorporate in other works, reuse and redistribute as freely as possible in any form whatsoever and for any purposes, including without limitation commercial purposes. These owners may contribute to the Commons to promote the ideal of a free culture and the further production of creative, cultural and scientific works, or to gain reputation or greater distribution for their Work in part through the use and efforts of others.
8 |
9 | For these and/or other purposes and motivations, and without any expectation of additional consideration or compensation, the person associating CC0 with a Work (the "Affirmer"), to the extent that he or she is an owner of Copyright and Related Rights in the Work, voluntarily elects to apply CC0 to the Work and publicly distribute the Work under its terms, with knowledge of his or her Copyright and Related Rights in the Work and the meaning and intended legal effect of CC0 on those rights.
10 |
11 | Copyright and Related Rights. A Work made available under CC0 may be protected by copyright and related or neighboring rights ("Copyright and Related Rights"). Copyright and Related Rights include, but are not limited to, the following:
12 | i. the right to reproduce, adapt, distribute, perform, display, communicate, and translate a Work;
13 |
14 | ii. moral rights retained by the original author(s) and/or performer(s);
15 |
16 | iii. publicity and privacy rights pertaining to a person's image or likeness depicted in a Work;
17 |
18 | iv. rights protecting against unfair competition in regards to a Work, subject to the limitations in paragraph 4(a), below;
19 |
20 | v. rights protecting the extraction, dissemination, use and reuse of data in a Work;
21 |
22 | vi. database rights (such as those arising under Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, and under any national implementation thereof, including any amended or successor version of such directive); and
23 |
24 | vii. other similar, equivalent or corresponding rights throughout the world based on applicable law or treaty, and any national implementations thereof.
25 |
26 | Waiver. To the greatest extent permitted by, but not in contravention of, applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and unconditionally waives, abandons, and surrenders all of Affirmer's Copyright and Related Rights and associated claims and causes of action, whether now known or unknown (including existing as well as future claims and causes of action), in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each member of the public at large and to the detriment of Affirmer's heirs and successors, fully intending that such Waiver shall not be subject to revocation, rescission, cancellation, termination, or any other legal or equitable action to disrupt the quiet enjoyment of the Work by the public as contemplated by Affirmer's express Statement of Purpose.
27 |
28 | Public License Fallback. Should any part of the Waiver for any reason be judged legally invalid or ineffective under applicable law, then the Waiver shall be preserved to the maximum extent permitted taking into account Affirmer's express Statement of Purpose. In addition, to the extent the Waiver is so judged Affirmer hereby grants to each affected person a royalty-free, non transferable, non sublicensable, non exclusive, irrevocable and unconditional license to exercise Affirmer's Copyright and Related Rights in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "License"). The License shall be deemed effective as of the date CC0 was applied by Affirmer to the Work. Should any part of the License for any reason be judged legally invalid or ineffective under applicable law, such partial invalidity or ineffectiveness shall not invalidate the remainder of the License, and in such case Affirmer hereby affirms that he or she will not (i) exercise any of his or her remaining Copyright and Related Rights in the Work or (ii) assert any associated claims and causes of action with respect to the Work, in either case contrary to Affirmer's express Statement of Purpose.
29 |
30 | Limitations and Disclaimers.
31 |
32 | a. No trademark or patent rights held by Affirmer are waived, abandoned, surrendered, licensed or otherwise affected by this document.
33 |
34 | b. Affirmer offers the Work as-is and makes no representations or warranties of any kind concerning the Work, express, implied, statutory or otherwise, including without limitation warranties of title, merchantability, fitness for a particular purpose, non infringement, or the absence of latent or other defects, accuracy, or the present or absence of errors, whether or not discoverable, all to the greatest extent permissible under applicable law.
35 |
36 | c. Affirmer disclaims responsibility for clearing rights of other persons that may apply to the Work or any use thereof, including without limitation any person's Copyright and Related Rights in the Work. Further, Affirmer disclaims responsibility for obtaining any necessary consents, permissions or other rights required for any use of the Work.
37 |
38 | d. Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with respect to this CC0 or use of the Work.
39 |
40 | For more information, please see https://creativecommons.org/publicdomain/zero/1.0
--------------------------------------------------------------------------------
/media/apple.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
54 |
--------------------------------------------------------------------------------
/media/linux.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
51 |
--------------------------------------------------------------------------------
/media/windows.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
304 |
--------------------------------------------------------------------------------
/readme.md:
--------------------------------------------------------------------------------
1 | # Awesome Ndi [](https://awesome.re)
2 |
3 | > Network Device Interface is a royalty-free software standard developed by NewTek to enable video-compatible products to communicate, deliver, and receive broadcast-quality video in a high-quality, low-latency manner that is frame-accurate and suitable for switching in a live production environment.
4 |
5 | > This is a curated list of tools related to NDI.
6 |
7 | = macOS builds
8 | = Windows builds
9 | = Linux Builds
10 | ✉️ = Requires e-mail for download
11 |
12 | ## Contents
13 |
14 | - [🔓 SDK Libraries](#-sdk-libraries)
15 | - [🛠️ Converters & Tools](#-converters--tools)
16 | - [👓 Software Vision Mixers](#-software-vision-mixers)
17 | - [🔴 Playback & Recording](#-playback--recording)
18 | - [🖌️ Graphics](#-graphics)
19 | - [📡 Contribution](#-contribution)
20 | - [🗺️ Media Servers & Mapping](#-media-servers--mapping)
21 | - [Other](#other)
22 |
23 | ## 🔓 SDK Libraries
24 |
25 |  [Streampunk/grandiose](https://github.com/Streampunk/grandiose) - Node.js bindings for NDI
26 |  [ykhwong/ppt-ndi](https://github.com/ykhwong/ppt-ndi) - PPT to NDI
27 |  [keijiro/KlakNDI](https://github.com/keijiro/KlakNDI) - NDI integration in Unity
28 |  [anome/Unity-plugin](https://github.com/anome/Unity-plugin) - Unity integration for NDI, Syphon, Sprout
29 |  [ue4plugins/NdiMedia](https://github.com/ue4plugins/NdiMedia) - NDI integration in Unreal Engine
30 |  [Syphon](http://syphon.v002.info/) - Listed here for posterity, Syphon is an NDI-like SDK to share video between applications on macOS (local only)
31 |  + Linux [Godot NDI](https://github.com/unvermuthet/godot-ndi) - Integrates the NDI SDK with the Godot Game Engine
32 |
33 | ## 🛠️ Converters & Tools
34 |
35 |  ️️✉️ [NewTek NDI tools](https://www.newtek.com/ndi/tools/) - the must-have toolset from NewTek
36 |  ✉️ [MediaLooks NDI to SDI converter](https://www.medialooks.com/products/) - converts from NDI to SDI
37 |  ✉️ [MediaLooks SDI to NDI converter](https://www.medialooks.com/products/) - converts from SDI to NDI
38 |  ✉️ [Sienna-TV Free NDI tools](http://www.sienna-tv.com/ndi/freenditools.html) - Includes a monitor app, signal generator app and scan converter
39 |  ✉️ [ZEN Computer Services NDI tools](http://zenvideo.co.uk/ndi.htm) - Variety of tools, including an image viewer, gradient generator and more
40 |  ✉️ [NDISyphon](hhttps://docs.vidvox.net/freebies_ndi_syphon.html) - Converts from Syphon to NDI and the other way around
41 |  + Linux [Vingester](https://github.com/josephdadams/vingester) - browser source ingest tool for NDI
42 |  [NSM](https://github.com/mini0/nsm) - NDI Stream Monitor for viewing and monitoring NDI sources
43 |  ✉️ [Second Stream](http://garaninapps.com/secondstream) - second screen software for mobile devices, takes an NDI feed
44 |  [RTMP Mini Server](http://garaninapps.com/rtmpminiserver) - converts incoming RTMP streams to NDI
45 |  [Sienna-TV NDI toolset](http://www.sienna-tv.com/ndi/) - a large variety of tools, from routing to monitoring and test signals
46 |  + Ubuntu - [Orfast Multiviewer](https://orfast.com/) - NDI Multiviewer
47 |
48 | ## 👓 Software Vision Mixers
49 |
50 |  [Open Broadcaster Studio with the NDI Plugin](https://obsproject.com/forum/resources/obs-ndi-newtek-ndi%E2%84%A2-integration-into-obs-studio.528/) - allows NDI input and output from OBS, even from individual sources in OBS
51 |  [Wirecast](https://www.telestream.net/wirecast/) - software video switcher
52 |  [vMix](https://www.vmix.com/) - software video switcher
53 |  [VidBlasterX](https://www.vidblasterx.com/) - software video switcher
54 |  [Livestream Studio](https://livestream.com/studio) - software video switcher
55 |  [mimoLive](https://boinx.com/mimolive/) - software video switcher
56 |  [Ecamm Live](https://www.ecamm.com/mac/ecammlive/) - software video switcher
57 |
58 | ## 🔴 Playback & Recording
59 |
60 |  [ProVideoPlayer 3](https://renewedvision.com/provideoplayer/download/) - Video cue software
61 |  [ProPresenter](https://renewedvision.com/propresenter/download/) - Video cue software
62 |  [Mitti](https://imimot.com/mitti/) - Video cue software
63 |  [Playdeck](https://www.playdeck.tv/) - Playout software with recording capability
64 |  [Stream-Labs VPlay 5](https://www.stream-labs.com/en/catalog/Playout_and_CG/VPlay_5_%E2%80%93_multichannel_broadcasting_with_CG) - Playout software with graphics capability
65 |  [Elite](https://www.elementseurope.com/) - Playout animation
66 |  + Linux - [Livemind Recorder](https://livemind.tv/recorder) - Multitrack NDI recorder
67 |  [Assimilate SCRATCH](https://www.assimilateinc.com/products/) - colorgrading, dailies and finishing with NDI output
68 |  [Assimilate Live Assist](https://www.assimilateinc.com/products/liveassist/) - video assist tool that captures, records and plays back NDI
69 |  Linux - [Dicaffeine](https://dicaffeine.com/) - NDI player and streamer for Linux (Raspberry Pi OS on Raspberry ARM computers and Ubuntu (Xubuntu) on AMD/Intel computers)
70 |  Linux - [RaspiNDI ](https://github.com/raspberry-pi-camera/raspindi) -
71 | RaspiNDI is a simple NDI send library for Raspberry Pi. Works with LibCamera supported Cameras (Raspberry Pi)
72 |
73 |
74 | ## 🖌️ Graphics
75 |
76 |  [CasparCG](https://github.com/CasparCG/server/releases/tag/v2.3.0-lts-beta.1) - live graphics application, layerbased real-time compositor
77 |  [NewBlue Titler Live 4](https://newbluefx.com/products/on-air-graphics/titler-live-present/) - live graphics application
78 |  [SuiteCG](https://suitecg.com/) - live graphics application
79 |  [live.score](https://www.live-score-app.com/) - live graphics application for sports graphics
80 |
81 |
82 | ## 📡 Contribution
83 |
84 |  [Skype](https://www.skype.com/nl/get-skype/) - video and audio conferencing
85 |  [MediaLooks Video Transport](https://www.medialooks.com/video-transport) - Cloud infrastructure for remote NDI contribution and transmission
86 |  [BirdDog Cloud](https://www.bird-dog.tv/cloud-overview/) - Cloud infrastructure for remote NDI contribution and transmission
87 |
88 | ## 🗺️ Media Servers & Mapping
89 |
90 |  [Resolume](https://resolume.com/download/) - VJ and projection mapping software
91 |  [ArKaos GrandVJ](https://vj.arkaos.com/) - VJ software
92 |  [Millumin](https://www.millumin.com/v3/index.php) - show control and projection mapping software
93 |  [Disguise](https://www.disguise.one/en/) - projection mapping and media server software
94 |  [Dataton Watchout](https://www.dataton.com/) - projection mapping and media server software
95 |  [Green Hippo](https://www.green-hippo.com) - projection mapping and media server software
96 |  [7th Sense](https://7thsensedesign.com/) - projection mapping and media server software
97 |
98 | ## Other
99 |
100 |  [CVM Eventi Countdown](https://github.com/CVMEventi/Countdown) - Timer software with integrated NDI output
101 |  [TouchDesigner](https://derivative.ca/) - visual development platform for multimedia
102 |  [NDI Streamer](https://github.com/alim-zanibekov/ndi_streamer) - Restream NDI as RTSP/RTMP
103 |
104 | ## Contribute
105 |
106 | Feel free to submit a pull-request or issue to get your software on this list.
107 |
108 | ## License
109 |
110 | [](https://creativecommons.org/publicdomain/zero/1.0)
111 |
112 | To the extent possible under law, Floris Porro has waived all copyright and
113 | related or neighboring rights to this work.
114 |
--------------------------------------------------------------------------------