SDK for converting meeting audio into structured text notes and actionable tasks
$ dotnet add package Aspose.MeetingNotesAspose.MeetingNotes is a .NET SDK for converting meeting audio into structured notes and actionable tasks using AI and speech recognition.
dotnet add package Aspose.MeetingNotes
var services = new ServiceCollection();
services.AddLogging();
services.AddHttpClient();
services.AddMeetingNotes(options =>
{
options.FfMpegPath = @"C:\Tools\ffmpeg.exe";
options.AIModel = new AIModelOptions
{
Url = "http://localhost:8080/v1",
ModelName = "llama-3-8b-instruct",
ApiKey = "your-api-key"
};
options.AsposeLicensePath = @"C:\Licenses\Aspose.Total.NET.lic";
});
var provider = services.BuildServiceProvider();
var client = provider.GetRequiredService<MeetingNotesClient>();
var result = await client.ProcessMeetingAsync(new FileInfo("meeting.mp3"));
await client.ExportAsync(result.Content, result.ActionItems, ExportFormat.Markdown);
Full source code, CLI tool, and examples:
🔗 https://github.com/aspose-note/Aspose.MeetingNotes-for-.NET
License: MIT