Speex: Difference between revisions

From OLPC
Jump to navigation Jump to search
No edit summary
m (added some links)
Line 15: Line 15:


# sox FileA.wav -r 16000 -c 1 FileB.wav
# sox FileA.wav -r 16000 -c 1 FileB.wav

==External Links==
* [[http://www.speex.org/]] The Speex homepage.
* [[http://www.speex.org/downloads/]] The speexenc encoder can be downloaded from here.
* [[http://www.speex.org/software]] Other software that uses Speex.


[[Category:Audio]]
[[Category:Audio]]

Revision as of 12:47, 2 December 2007

Speex is an Audio Codex that is part of the OGG container format. Speex is optimized for voice recording and transmission. It makes for very small file sizes for voice recording. If you have a video, or audio for the olpc that just consists of speaking, you should strongly consider encoding it in Speex.

Audiobooks should be encoded (or transcoded into) speex for size reasons, and mpeg issues.

GStreamer plays speex and works in the current build.

Several people are working on encoding Audiobooks in speex from existing formats.

Transcode

There are a few tools and programs that can output to speex. We would like our speex audio to be 16000 Hz mono quality five. This reduces file sizes from raw .wav files manyfold. If you would like to encode this via command line use the following commands:

  1. speexenc -w --quality 5 --vbr --comp 10 FileA.wav FileA.spx

First you should make sure that your audio is 16 kHz mono before you take it to speex

  1. sox FileA.wav -r 16000 -c 1 FileB.wav

External Links

  • [[1]] The Speex homepage.
  • [[2]] The speexenc encoder can be downloaded from here.
  • [[3]] Other software that uses Speex.