This project is a .NET Web API designed to facilitate audio transcription and translation using OpenAI's Whisper API. It provides endpoints for uploading audio files, transcribing them into text, and translating the transcriptions into different languages.
- Audio Transcription: Convert audio files into text using OpenAI's Whisper API.
- Audio Translation: Translate transcriptions into different languages.
- Clone the repository
- Add Your OpenAI API Key . Replace the placeholder OPENAIAPIKEY with your actual OpenAI API key
public static class Constants
{
var OPENAIAPIKEY = builder.Configuration["OPENAI_API_KEY"] ?? ""; // <--- change your key here
}