Convert-it/Services/ITextToSpeechService.cs
Ricardo Carneiro f8f052428f
All checks were successful
Deploy ASP.NET MVC to OCI / build-and-deploy (push) Successful in 22m1s
fix: features de audio
2026-01-26 09:37:47 -03:00

10 lines
246 B
C#

using System.Threading.Tasks;
namespace Convert_It_Online.Services
{
public interface ITextToSpeechService
{
Task<byte[]> GenerateAudioAsync(string text, string language = "pt-BR", float rate = 1.0f, float pitch = 1.0f);
}
}