Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
dclipca committed Dec 6, 2024
2 parents 8a4ff45 + acf6a39 commit 4c428a6
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,32 @@ foreach (var model in models)
}
```

## Audio Format
FakeYou.NET returns WAV audio data exactly as received from the FakeYou API, which is:

- Sample Rate: 44.1 kHz
- Channels: 2 (Stereo)
- Bit Depth: 8-bit PCM

Many modern applications and platforms expect 16-bit PCM WAV files, so you may need to convert the audio data. Here's an example using NAudio:

```csharp
// Example using NAudio to convert from 8-bit to 16-bit PCM
using NAudio.Wave;

byte[] audioData = await client.GenerateAudioAsync(modelToken, text);

using var inputStream = new MemoryStream(audioData);
using var reader = new WaveFileReader(inputStream);

// Convert from 8-bit to 16-bit PCM
var targetFormat = new WaveFormat(44100, 16, 2);
using var conversionStream = new WaveFormatConversionStream(targetFormat, reader);
using var outputStream = new MemoryStream();
WaveFileWriter.WriteWavFileToStream(outputStream, conversionStream);
audioData = outputStream.ToArray();
```

## Advanced Usage

### Custom Configuration
Expand Down

0 comments on commit 4c428a6

Please sign in to comment.