Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/egorsmkv/wav-to-opus
WAV to OPUS pipeline
https://github.com/egorsmkv/wav-to-opus
opus opus-tools opusdec opusenc pipeline xiph
Last synced: 25 days ago
JSON representation
WAV to OPUS pipeline
- Host: GitHub
- URL: https://github.com/egorsmkv/wav-to-opus
- Owner: egorsmkv
- Created: 2024-08-12T13:01:47.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-08-12T14:11:16.000Z (3 months ago)
- Last Synced: 2024-08-13T15:46:59.689Z (3 months ago)
- Topics: opus, opus-tools, opusdec, opusenc, pipeline, xiph
- Language: Shell
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# `wav-to-opus`
- Parallelized script to convert all `.wav` files in a directory to `.opus` files using `opusenc`.
- Parallelized script to convert all `.opus` files in a directory to `.wav` files using `opusdec`.## Install
```shell
apt-get install parallel build-essential pkg-config file libssl-devbash compile-opus.sh
```## Encode
```shell
python wav_to_opus.pycat wav_to_opus.sh | parallel -j 5
```## Decode
```shell
python opus_to_wav.pycat opus_to_wav.sh | parallel -j 5
```