Saturday, May 7, 2016

Taranis Sound File Formatting

Here's the incantation to generate a sound file playable on Taranis.


ffmpeg -i myfile.mp3 -ar 32000 -ac 1 -acodec pcm_s16le myfile.wav

In human being terms:

- 32,000 bps sampling
- mono
- PCM signed 16-bit little-endian

well for a certain type of human being anyway.

blogodex = {"toc" : "Taranis Audio", "idx" : ["audio", "ffmpeg", "deep, dark magic"]};

No comments:

Post a Comment