All Projects → bouiboui → linear16

bouiboui / linear16

Licence: other
Converts an audio file to LINEAR16 Google-speech compatible file.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to linear16

voice-based-email-for-blind
Emailing System for visually impaired persons
Stars: ✭ 35 (+150%)
Mutual labels:  speech
D-TDNN
PyTorch implementation of Densely Connected Time Delay Neural Network
Stars: ✭ 60 (+328.57%)
Mutual labels:  speech
e2-scripts
Scripts for working with electribe 2.
Stars: ✭ 20 (+42.86%)
Mutual labels:  convert
data-at-hand-mobile
Mobile application for exploring fitness data using both speech and touch interaction.
Stars: ✭ 50 (+257.14%)
Mutual labels:  speech
json-to-html-converter
Converts JSON data to HTML table with collapsible details view for nested objects.
Stars: ✭ 13 (-7.14%)
Mutual labels:  convert
Excel2Object
excel convert to .NET Object | Excel与.NET 对象进行转换,支持公式、多Sheet等功能
Stars: ✭ 35 (+150%)
Mutual labels:  convert
CVC
CVC: Contrastive Learning for Non-parallel Voice Conversion (INTERSPEECH 2021, in PyTorch)
Stars: ✭ 45 (+221.43%)
Mutual labels:  speech
DeepSegmentor
Sequence Segmentation using Joint RNN and Structured Prediction Models (ICASSP 2017)
Stars: ✭ 17 (+21.43%)
Mutual labels:  speech
kaldi helpers
🙊 A set of scripts to use in preparing a corpus for speech-to-text processing with the Kaldi Automatic Speech Recognition Library.
Stars: ✭ 13 (-7.14%)
Mutual labels:  speech
datasets
🤗 The largest hub of ready-to-use datasets for ML models with fast, easy-to-use and efficient data manipulation tools
Stars: ✭ 13,870 (+98971.43%)
Mutual labels:  speech
ansi-to-svg
😹 convert ANSI Escaped CLI strings to SVGs
Stars: ✭ 18 (+28.57%)
Mutual labels:  convert
melgan
MelGAN implementation with Multi-Band and Full Band supports...
Stars: ✭ 54 (+285.71%)
Mutual labels:  speech
deepspeech.mxnet
A MXNet implementation of Baidu's DeepSpeech architecture
Stars: ✭ 82 (+485.71%)
Mutual labels:  speech
persian
Some utilities for Persian language in Go (Golang)
Stars: ✭ 65 (+364.29%)
Mutual labels:  convert
json-table-converter
Convert any json to table.
Stars: ✭ 37 (+164.29%)
Mutual labels:  convert
AdaSpeech
AdaSpeech: Adaptive Text to Speech for Custom Voice
Stars: ✭ 108 (+671.43%)
Mutual labels:  speech
ttf2hershey
Convert True Type Fonts (.ttf) to Hershey vector fonts
Stars: ✭ 29 (+107.14%)
Mutual labels:  convert
speech-transformer
Transformer implementation speciaized in speech recognition tasks using Pytorch.
Stars: ✭ 40 (+185.71%)
Mutual labels:  speech
VAD-LTSD
Efficient voice activity detection algorithm using long-term speech information
Stars: ✭ 37 (+164.29%)
Mutual labels:  speech
JD-NMF
Joint Dictionary Learning-based Non-Negative Matrix Factorization for Voice Conversion (TBME 2016)
Stars: ✭ 20 (+42.86%)
Mutual labels:  speech

Converts an audio file to LINEAR16 Google-speech compatible file.

This project has only been tested with m4a but should be compatible with all supported audio formats supported by ffmpeg.

Installation

// with yarn
yarn add linear16

// with npm
npm i --save linear16

Usage

With async/await

const linear16 = require('linear16');

(async () => {

const outPath = await linear16('./input.m4a', './output.wav');
console.log(outPath); // Returns the output path, ex: ./output.wav

})();

With named parameters

const linear16 = require('linear16');

(async () => {

const outPath = await linear16({
inPath:  './input.m4a',
outPath: './output.wav'
});
console.log(outPath); // Returns the output path, ex: ./output.wav

})();

With then

const linear16 = require('linear16');

linear16('./input.m4a', './output.wav')
.then(outPath => console.log(outPath)); // Returns the output path, ex: ./output.wav
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].