19 lines
373 B
C#
19 lines
373 B
C#
using BotSharp.Voice;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BotSharp.RestApi.Voice
|
|
{
|
|
[Route("[controller]/[action]")]
|
|
public class WakeupWordController : ControllerBase
|
|
{
|
|
[HttpGet]
|
|
public void Record()
|
|
{
|
|
new AudioCapture().Start();
|
|
}
|
|
}
|
|
}
|