Merge remote-tracking branch 'origin/main' into audio_test

This commit is contained in:
Enrique Hernandez 2021-03-03 14:30:38 -06:00
commit 695bda6c9a
3 changed files with 87 additions and 59 deletions

View file

@ -3,11 +3,13 @@
"use strict";
import { sendAudio } from './session'
import { ipcMain } from "electron";
import { backgroundMitt } from './emitter';
const portAudio = require('naudiodon');
let ai: typeof portAudio.AudioIO;
let ao: typeof portAudio.AudioIO;
const audioInput: Buffer[] = [];
let ai: typeof portAudio.AudioIO | null = null;
let ao: typeof portAudio.AudioIO | null = null;
let audioInput: Buffer[] = [];
const encoding = "base64";
const audioOptions = {
channelCount: 1,
@ -17,10 +19,20 @@ const audioOptions = {
closeOnError: false,
}
// run every time the main function launches.
export const initAudioIO = () => {
// init portAudio readable stream once.
if (!ai) {
backgroundMitt.once('window-active', (state: boolean) => {
if(!state) {
stopStream();
}
});
// main audio function run by run.ts module.
export function initAudioIO(): void {
if (ai != null) {
ai.quit();
audioInput = [];
}
ai = new portAudio.AudioIO({ inOptions: audioOptions });
// base64 encoding needed for google speech to text.
@ -30,41 +42,41 @@ export const initAudioIO = () => {
ai.start();
ai.pause();
ai.on('error', (e: Error) => {
console.log('Error recording audio', + e);
});
ai.on('data', (chunk: string) => {
// turn string base64 data into buffer object.
console.log('received string chunk of length', chunk.length)
const buf = Buffer.from(chunk, encoding);
audioInput.push(buf);
// turn string base64 data into buffer object.
const buf = Buffer.from(chunk, encoding);
audioInput.push(buf);
});
}
// init portAudio writable stream once.
if (!ao) {
ao = new portAudio.AudioIO({ outOptions: audioOptions });
ao.start();
}
if (ao != null) {
ao.end();
}
ao = new portAudio.AudioIO({ outOptions: audioOptions });
ao.start();
}
// run this function on space bar key up and down.
export const updateRecorder = (_event, record: boolean): void => {
// callback run on space bar key up and down.
const updateRecorder = (_event, record: boolean): void => {
if (record) {
// resume mic data flow on space bar key down.
while(audioInput.length) { audioInput.pop() }
ai.resume();
} else {
// stop mic data flow on space bar key up.
ai.pause();
const audio = Buffer.concat(audioInput);
play(audioInput);
// sendAudio(audio);
while (audioInput.length) { audioInput.pop(); }
sendAudio(audio);
// clear audioInput.
while(audioInput.length) { audioInput.pop() }
}
}
// listen for space key up/down event.
ipcMain.removeAllListeners('update-recorder');
ipcMain.on('update-recorder', updateRecorder);
// play audio buffers.
export const play = (input: Array<Buffer>) => {
export function play(input: Array<Buffer>): void {
let i = 0;
// format buffers into half their size to account for writable highwaterMark.
const audio = bufSplit(input);
@ -77,6 +89,7 @@ export const play = (input: Array<Buffer>) => {
function write() {
let chunk: Buffer;
let ok = true;
do {
chunk = audio[i];
if (i === audio.length - 1) {
@ -97,7 +110,18 @@ export const play = (input: Array<Buffer>) => {
}
}
// utility function used by play func
function stopStream() {
if(ai != null) {
ai.quit();
ai = null;
}
if (ao != null) {
ao.quit();
ao = null;
}
}
// utility function used by play func.
function bufSplit(input: Array<Buffer>): Array<Buffer> {
const result: Buffer[] = [];
input.forEach((b: Buffer) => {

View file

@ -1,3 +1,4 @@
"use strict";
import { app } from "electron";
@ -6,7 +7,7 @@ import { backgroundMitt } from './emitter';
let winActive: boolean;
backgroundMitt.on('window-active', (state: boolean) => {
backgroundMitt.once('window-active', (state: boolean) => {
winActive = state;
});
@ -23,7 +24,6 @@ export function initApp(dev: boolean): void {
}
});
// TODO: Debug activate functionaity: currently not working.
// Might have to de-reference window object
app.on("activate", () => {
if (winActive === false) {

View file

@ -3,7 +3,6 @@
import { BrowserWindow, ipcMain } from "electron";
import { createProtocol } from "vue-cli-plugin-electron-builder/lib";
import { backgroundMitt } from './emitter';
import { updateRecorder } from './audio';
import * as path from "path";
interface WindowSettings {
@ -28,31 +27,48 @@ interface IpcRendererPayload {
let win: BrowserWindow | null;
// Util function to handle window close & minimize.
const navBarHandler = (_event, action: string): void => {
switch(action) {
case 'close':
if (win) win.close();
break;
case 'min':
if (win) win.minimize();
break;
}
}
// Util function to render message on ipc-renderer event.
const renderMessage = (payload: IpcRendererPayload): void => {
if (win) {
win.webContents.send(payload.endpoint, {
message: payload.message
});
}
}
// Do this on window mount.
const windowMount = (): void => {
backgroundMitt.emit('window-active', true);
ipcMain.removeAllListeners('update-recorder');
ipcMain.on('update-recorder', updateRecorder);
// handle renderer auth-token event
ipcMain.removeHandler('nav-bar'); // avoid setting duplicate handlers
ipcMain.handle('nav-bar', navBarHandler);
backgroundMitt.emit('window-active', true);
// handle win nav-bar event.
ipcMain.removeHandler('nav-bar'); // avoid setting duplicate handlers
ipcMain.handle('nav-bar', navBarHandler);
// render messages through ipc-renderer.
backgroundMitt.once('ipc-renderer', renderMessage);
}
// do this on window dismount.
const windowDismount = (): void => {
win = null;
backgroundMitt.emit('window-active', false);
ipcMain.removeAllListeners('update-recorder');
win = null;
backgroundMitt.emit('window-active', false);
}
backgroundMitt.on('ipc-renderer', (payload: IpcRendererPayload) => {
if (win)
win.webContents.send(payload.endpoint, {
message: payload.message
});
});
export const createWindow = async (options: WindowSettings): Promise<void> => {
// function used by run.ts to create the main window.
export async function createWindow(options: WindowSettings): Promise<void> {
return new Promise((resolve, _reject) => {
// avoid creating duplicate windows.
if (win) resolve();
win = new BrowserWindow({
@ -94,16 +110,4 @@ export const createWindow = async (options: WindowSettings): Promise<void> => {
});
});
};
// call this function on nav bar click
function navBarHandler(_event, action: string) {
switch(action) {
case 'close':
if (win) win.close();
break;
case 'min':
if (win) win.minimize();
break;
}
}