Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zaf/Speex-with-header-bytes
Implements MIME-type "x-speex-with-header-byte" binary format in Speexenc
https://github.com/zaf/Speex-with-header-bytes
Last synced: 15 days ago
JSON representation
Implements MIME-type "x-speex-with-header-byte" binary format in Speexenc
- Host: GitHub
- URL: https://github.com/zaf/Speex-with-header-bytes
- Owner: zaf
- License: other
- Archived: true
- Fork: true (QXIP/Speex-with-header-bytes)
- Created: 2012-02-16T09:31:04.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-02-28T17:08:02.000Z (over 12 years ago)
- Last Synced: 2024-07-31T14:09:02.011Z (4 months ago)
- Language: C
- Homepage: http://qxip.net/wiki
- Size: 2.07 MB
- Stars: 5
- Watchers: 5
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: ChangeLog
- License: COPYING
Awesome Lists containing this project
README
SPEEXENC & SPEEXDEC support for "x-speex-with-header-byte" MIME *to be used with google speech recognition API*
WORKING STATUS! PLEASE TEST & GIVE US FEEDBACK!
To use the (experimental) binary format for MIME "x-speex-with-header-byte":
% speexenc --headerbyte --vbr --w --quality 3 input_file.wav compressed_file.spx
% speexdec --headerbyte compressed_file.spx decompressed_file.wav
To test against gapi:
% curl --data-binary @compressed_file.spx --header 'Content-type: audio/x-speex-with-header-byte; rate=16000' 'https://www.google.com/speech-api/v1/recognize?client=chromium&lang=en-US&maxresults=2'
See INSTALL file for instruction on how to install Speex.
The Speex is a patent-free, Open Source/Free Software voice codec. Unlike other codecs like MP3 and Ogg Vorbis, Speex is designed to compress voice at bitrates in the 2-45 kbps range. Possible applications include VoIP, internet audio streaming, archiving of speech data (e.g. voice mail), and audio books. In some sense, it is meant to be complementary to the Ogg Vorbis codec.
To use the Speex command line tools:
% speexenc [options] input_file.wav compressed_file.spx
% speexdec [options] compressed_file.spx output_file.wav