All Projects → escrichov → G711

escrichov / G711

Licence: MIT license
PCM to G711 Fast Conversions

Programming Languages

c
50402 projects - #5 most used programming language
Makefile
30231 projects

Projects that are alternatives of or similar to G711

dom-to-image-more
Generates an image from a DOM node using HTML5 canvas
Stars: ✭ 231 (+492.31%)
Mutual labels:  conversion
ledger2beancount
Ledger to Beancount text-based converter
Stars: ✭ 63 (+61.54%)
Mutual labels:  conversion
pcm-convert
Convert pcm data from any to any format
Stars: ✭ 30 (-23.08%)
Mutual labels:  pcm
marc2bibframe2
Convert MARC records to BIBFRAME2 RDF
Stars: ✭ 72 (+84.62%)
Mutual labels:  conversion
convert
The smallest & fastest library for really easy, totally type-safe unit conversions in TypeScript & JavaScript.
Stars: ✭ 47 (+20.51%)
Mutual labels:  conversion
pesa
A JS money lib whose precision goes up to 11 (and beyond).
Stars: ✭ 38 (-2.56%)
Mutual labels:  conversion
electron-html-to
Highly scalable html conversion using electron workers 🚀
Stars: ✭ 55 (+41.03%)
Mutual labels:  conversion
omnic
Stateless microservice for on-the-fly thumbs and conversions of a wide variety of file types, utilizing conversion graph.
Stars: ✭ 17 (-56.41%)
Mutual labels:  conversion
xmind2testlink
Convert xmind to test link xml files, support xmind pro and xmind zen.
Stars: ✭ 99 (+153.85%)
Mutual labels:  conversion
cryptoformat
Javascript library to format and display cryptocurrency and money
Stars: ✭ 40 (+2.56%)
Mutual labels:  conversion
DIVA Tools
A global host of tools used to mod/parse Project DIVA games.
Stars: ✭ 24 (-38.46%)
Mutual labels:  conversion
geofiddle
Geometric conversions between different formats and projections
Stars: ✭ 15 (-61.54%)
Mutual labels:  conversion
aspose-words-cloud-node
Node.Js library for communicating with the Aspose.Words Cloud API
Stars: ✭ 20 (-48.72%)
Mutual labels:  conversion
xiny
Simple command line tool for unit conversions
Stars: ✭ 40 (+2.56%)
Mutual labels:  conversion
xsampa
X-SAMPA to IPA converter
Stars: ✭ 20 (-48.72%)
Mutual labels:  conversion
discoursegraphs
linguistic converter / merging tool for multi-level annotated corpora. graph-based (using Python and NetworkX).
Stars: ✭ 47 (+20.51%)
Mutual labels:  conversion
RouteConverter
The popular GPS conversion and editing tool
Stars: ✭ 123 (+215.38%)
Mutual labels:  conversion
CryptionTool
一个CTF+渗透测试工具框架,集成常见加解密,密码、编码转换,端口扫描,字符处理等功能
Stars: ✭ 62 (+58.97%)
Mutual labels:  conversion
bidskit
Utility functions for working with DICOM and BIDS neuroimaging data
Stars: ✭ 52 (+33.33%)
Mutual labels:  conversion
ReSampler
High quality command-line audio sample rate converter
Stars: ✭ 120 (+207.69%)
Mutual labels:  conversion

PCM to G711 Fast Conversions

Build example:

make

Conversions

./example example_files/alaw.raw alaw_pcm ulaw_to_pcm.audio
./example example_files/ulaw.raw ulaw_pcm alaw_to_pcm.audio
./example example_files/pcm.raw pcm_alaw pcm_to_alaw.audio
./example example_files/pcm.raw pcm_ulaw pcm_to_ulaw.audio

To play files:

brew install sox
play -t s16 -r 44100 -c 2 -e signed-integer example_files/pcm.raw
play -t raw -r 44100 -c 2 -e a-law example_files/alaw.raw
play -t raw -r 44100 -c 2 -e u-law example_files/ulaw.raw
play -t s16 -r 44100 -c 2 -e signed-integer alaw_to_pcm.audio
play -t s16 -r 44100 -c 2 -e signed-integer ulaw_to_pcm.audio
play -t raw -r 44100 -c 2 -e a-law          pcm_to_alaw.audio
play -t raw -r 44100 -c 2 -e u-law          pcm_to_ulaw.audio
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].