v0.1: Robovoice — PTT re-voicing app

WinForms tray app that captures text (from file or direct input) and
synthesizes speech via libpiper (Piper TTS), outputting to any audio
device (VB-CABLE for virtual mic routing).

Features:
- Global PTT hotkey (configurable F1-F12) via WH_KEYBOARD_LL
- Text file sequential reader (line-by-line on each PTT cycle)
- Direct text input with Speak button
- Voice manager: browse 147-voice Piper catalogue, download, remove
- libpiper P/Invoke wrapper with UTF-8 marshaling, streaming chunks
- BufferedWaveProvider streaming playback with trailing silence flush
- Sentence terminator auto-append (fixes espeak-ng final-word drop)
- Tray icon with minimize-to-tray

Architecture:
- Robovoice.Core: ITtsEngine, ISttSource interfaces, voice catalogue
- Robovoice.Tts.LibPiper: P/Invoke wrapper for libpiper.dll
- Robovoice.Stt.File: text file STT source (testing without mic server)
- Robovoice.Stt.Udp: UDP client stub (for future Linux mic server)
- Robovoice.App: WinForms UI, orchestrator, PTT hotkey, audio output
This commit is contained in:
2026-08-10 11:27:28 +00:00
parent 03e6ccf388
commit 8585972a1e
25 changed files with 2005 additions and 0 deletions
+112
View File
@@ -0,0 +1,112 @@
using NAudio.Wave;
namespace Robovoice.App;
internal sealed class AudioOutput : IDisposable
{
private WaveOutEvent? _waveOut;
private BufferedWaveProvider? _bufferProvider;
private int _sampleRate;
private string _deviceName = string.Empty;
private bool _playing;
private bool _disposed;
public Action<string>? Log { get; set; }
public void Start(int sampleRate, string? deviceName = null)
{
ObjectDisposedException.ThrowIf(_disposed, this);
_sampleRate = sampleRate;
_deviceName = deviceName ?? string.Empty;
Stop();
int deviceNumber = FindDevice(_deviceName);
_waveOut = new WaveOutEvent { DeviceNumber = deviceNumber, DesiredLatency = 200 };
_bufferProvider = new BufferedWaveProvider(
WaveFormat.CreateIeeeFloatWaveFormat(sampleRate, 1))
{
BufferDuration = TimeSpan.FromSeconds(60),
DiscardOnBufferOverflow = true,
ReadFully = true,
};
_waveOut.Init(_bufferProvider);
_waveOut.PlaybackStopped += OnPlaybackStopped;
_playing = true;
_waveOut.Play();
}
public void WriteSamples(float[] samples)
{
ObjectDisposedException.ThrowIf(_disposed, this);
if (_bufferProvider is null) return;
byte[] bytes = new byte[samples.Length * sizeof(float)];
Buffer.BlockCopy(samples, 0, bytes, 0, bytes.Length);
_bufferProvider.AddSamples(bytes, 0, bytes.Length);
}
public void Flush()
{
ObjectDisposedException.ThrowIf(_disposed, this);
if (_bufferProvider is null || _sampleRate == 0) return;
int padSamples = (int)(_sampleRate * 0.5);
WriteSamples(new float[padSamples]);
}
private void OnPlaybackStopped(object? sender, StoppedEventArgs e)
{
_playing = false;
}
public void Stop()
{
if (_waveOut is not null)
{
_waveOut.PlaybackStopped -= OnPlaybackStopped;
_waveOut.Stop();
_waveOut.Dispose();
_waveOut = null;
}
_bufferProvider?.ClearBuffer();
_bufferProvider = null;
_playing = false;
}
private static int FindDevice(string? deviceName)
{
if (string.IsNullOrEmpty(deviceName))
return -1;
for (int i = 0; i < WaveOut.DeviceCount; i++)
{
var caps = WaveOut.GetCapabilities(i);
if (caps.ProductName.Contains(deviceName, StringComparison.OrdinalIgnoreCase))
return i;
}
return -1;
}
public static IReadOnlyList<(int Index, string Name)> GetDevices()
{
var devices = new List<(int, string)>();
for (int i = 0; i < WaveOut.DeviceCount; i++)
{
var caps = WaveOut.GetCapabilities(i);
devices.Add((i, caps.ProductName));
}
return devices;
}
public void Dispose()
{
if (_disposed) return;
Stop();
_disposed = true;
}
}