wx voice
1.0.0
Konvertieren Sie Audiodateien zwischen Tencent-Apps (Weixin/Wechat, QQ) und Silk-Codec mit anderen allgemeinen Formaten wie MP3 und M4A
中文版
$ npm install wx-voice --save
$ npm install wx-voice -g
$ wx-voice compile
wx-voice <command> <options>
Example:
$ wx-voice decode -i input.silk -o output.mp3 -f mp3
$ wx-voice encode -i input.mp3 -o output.silk -f silk
Command:
decode decode to general audio format
encode encode from general audio format
compile compile wx-voice library
clean remove compiled library
Options:
-i <input> input file path
-o <output> output file path
-f <format> format of the output file
--bitrate bitrate of the output file
--frequency frequency of the output file
--channels channels of the output file
// Initialize
const WxVoice = require ( 'wx-voice' ) ;
var voice = new WxVoice ( ) ;
// Error handler
voice . on ( "error" , ( err ) => console . log ( err ) ) ;
// Decode silk to MP3
voice . decode (
"input.silk" , "output.mp3" , { format : "mp3" } ,
( file ) => console . log ( file ) ) ;
// Output: "/path/to/output.mp3"
Initialisieren Sie das wxVoice-Objekt
Parameter | Beschreibung |
---|---|
temporärer Ordner | Ordner mit temporären Dateien, standardmäßig systemtemporär |
ffmpegPath | Benutzerdefinierter Pfad zu ausführbaren ffmpeg-Dateien, standardmäßig mit $PATH |
Dekodieren Sie das Audio in allgemeine Formate
Kodieren Sie das Audio in das Silk/WebM-Format
Parameter | Beschreibung |
---|---|
Eingang | Eingangs-Audiopfad |
Ausgabe | Ausgabe-Audiopfad |
Optionen | Ausgabeoptionen (JS-Objekt), siehe Optionen |
Rückruf | Rückruf mit output als Parameter bei erfolgreicher Dekodierung, andernfalls undefined |
voice . encode (
"input.mp3" , "output.silk" , { format : "silk" } ,
( file ) => console . log ( file ) ) ;
// Output: "/path/to/output.silk"
Ermitteln Sie die Dauer der Audiodatei
(Dekodieren Sie es in ein allgemeines Audioformat, bevor Sie diese Methode aufrufen.)
Parameter | Beschreibung |
---|---|
Dateipfad | Dateipfad zum Audio |
Rückruf | Rückruf mit Dauer des Audios in Sekunden als Parameter bei erfolgreicher Decodierung, andernfalls 0 |
voice . encode ( "output.mp3" , ( dur ) => console . log ( dur ) ) ;
// Output: "10.290"
Javascript-Objekt zum Festlegen von Optionen für die Ausgabedatei
Parameter | Beschreibung |
---|---|
Format | Zu kodierendes/dekodiertes Format (Silk, WebM, MP3, M4A...), Standardanalyse aus der Ausgabe |
Bitrate | Bitrate der Ausgabe, BPS-Einheit |
Frequenz | Frequenz des Ausgangs, Einheit Hz |
Kanäle | Kanäle der Ausgabe, standardmäßig 1 |
Dekodierung: Getestet auf mp3
, m4a
, wav
, pcm
Kodierung: Getestet auf silk
, silk_amr
, webm
Betriebssystem | Befehl |
---|---|
Ubuntu | sudo apt-get install build-essential |
CentOS | sudo yum groupinstall 'Development Tools' |
Mac | Laden Sie XCode herunter |
$ sudo add-apt-repository ppa:mc3man/trusty-media
$ sudo apt-get update
$ sudo apt-get install ffmpeg
$ sudo yum install epel-release
$ sudo yum update
$ sudo rpm --import http://li.nux.ro/download/nux/RPM-GPG-KEY-nux.ro
Für CentOS 7:
$ sudo rpm -Uvh http://li.nux.ro/download/nux/dextop/el7/x86_64/nux-dextop-release-0-5.el7.nux.noarch.rpm
Für CentOS 6:
$ sudo rpm -Uvh http://li.nux.ro/download/nux/dextop/el6/x86_64/nux-dextop-release-0-2.el6.nux.noarch.rpm
FFMPEG installieren:
$ sudo yum install ffmpeg
$ brew install ffmpeg
MIT © Ang YC