Skip to content

Instantly share code, notes, and snippets.

View earjuice's full-sized avatar

Houston Guy earjuice

View GitHub Profile
@earjuice
earjuice / CinderNDIaudioSender.cpp
Last active February 13, 2019 21:36
Cinder NDI audio Sender
#include "CinderNDIaudioSender.h"
#include <Processing.NDI.Recv.h>
CinderNDIaudioSender::CinderNDIaudioSender( const std::string name, const Format &format )
: mName( name ) , Node(format)
{
if( ! NDIlib_is_supported_CPU() ) {
ci::app::Platform::get()->console() << "Failed to initialize NDI because of unsupported CPU!" << std::endl;
}