https://github.com/unclerus/esp-idf-speex
Speex codec component for ESP32 ESP-IDF
https://github.com/unclerus/esp-idf-speex
esp-idf esp32 speex
Last synced: 8 months ago
JSON representation
Speex codec component for ESP32 ESP-IDF
- Host: GitHub
- URL: https://github.com/unclerus/esp-idf-speex
- Owner: UncleRus
- Created: 2019-08-14T21:54:59.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-02-22T19:33:37.000Z (over 2 years ago)
- Last Synced: 2025-10-04T11:51:37.227Z (9 months ago)
- Topics: esp-idf, esp32, speex
- Language: C
- Size: 1.62 MB
- Stars: 16
- Watchers: 4
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Speex component for ESP-IDF
https://www.speex.org/
Version: 1.2.1
## Speex: A Free Codec For Free Speech
Speex is an Open Source/Free Software patent-free audio compression
format designed for speech. The Speex Project aims to lower the barrier
of entry for voice applications by providing a free alternative to
expensive proprietary speech codecs. Moreover, Speex is well-adapted to
Internet applications and provides useful features that are not present
in most other codecs. Finally, Speex is part of the GNU Project and is
available under the revised BSD license.
## How to use
Clone this repository into `components` subdir of yout project:
```Shell
cd ~/my_esp_idf_project
mkdir components
cd components
git clone git@github.com:UncleRus/esp-idf-speex.git
```
Or clone it to any other directory and add it to your project `Makefile` or `CMakeLists.txt`:
```Makefile
PROJECT_NAME := my-esp-project
EXTRA_COMPONENT_DIRS := $(HOME)/my/work/path/esp-idf-speex
include $(IDF_PATH)/make/project.mk
```
```cmake
cmake_minimum_required(VERSION 3.5)
set(EXTRA_COMPONENT_DIRS $ENV{HOME}/my/work/path/esp-idf-speex)
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
project(my-esp-project)
```
See examples.