Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@martindevans
Created August 21, 2019 15:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save martindevans/266553f7405c393e5a41d4729b67fa1e to your computer and use it in GitHub Desktop.
Save martindevans/266553f7405c393e5a41d4729b67fa1e to your computer and use it in GitHub Desktop.
using System;
using NAudio.Wave;
using UnityEngine;
namespace SomeNamespace
{
public class BasicFileStreamingCapture
: MonoBehaviour, IMicrophoneCapture
{
public bool IsRecording { get; private set; }
public TimeSpan Latency { get; private set; }
public WaveFormat StartCapture(string name)
{
throw new NotImplementedException();
}
public void StopCapture()
{
throw new NotImplementedException();
}
public void Subscribe(IMicrophoneSubscriber listener)
{
throw new NotImplementedException();
}
public bool Unsubscribe(IMicrophoneSubscriber listener)
{
throw new NotImplementedException();
}
public bool UpdateSubscribers()
{
throw new NotImplementedException();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment