# swa-praktikum-2024

hallo

## Tips

```javascript
 const formData = new FormData();
 
  // Append the Blob object to the FormData object
  formData.append('file', blob, 'audio.ogg');

  // Append any other parameters required by the API
  // For example, specifying the model or language
  formData.append('model', 'whisper-1');

 
 
 const url = "https://api.openai.com/v1/audio/transcriptions";

    const requestOptions = {
      method: "POST",
      headers: {
        "Authorization": `Bearer ${apiKey}`
      },
      body: formData
    };


fetch(url, requestOptions).then(r => r.text())
```