wx voice
1.0.0
Konversi file audio antara aplikasi Tencent (Weixin / Wechat, QQ) dan codec Silk dengan format umum lainnya seperti MP3 dan 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"
Inisialisasi objek wxVoice
Parameter | Keterangan |
---|---|
folder temp | Folder file sementara, default untuk sistem sementara |
ffmpegPath | Jalur khusus ke executable ffmpeg, default menggunakan $PATH |
Decode audio ke format umum
Enkode audio ke format sutra/webm
Parameter | Keterangan |
---|---|
masukan | Masukkan jalur audio |
keluaran | Jalur audio keluaran |
pilihan | Opsi keluaran (Objek JS), lihat Opsi |
panggilan balik | Panggilan balik dengan output sebagai parameter ketika dekode berhasil, sebaliknya undefined |
voice . encode (
"input.mp3" , "output.silk" , { format : "silk" } ,
( file ) => console . log ( file ) ) ;
// Output: "/path/to/output.silk"
Dapatkan durasi file audio
(Dekode ke format audio umum sebelum memanggil metode ini)
Parameter | Keterangan |
---|---|
jalur file | Jalur file ke audio |
panggilan balik | Panggilan balik dengan durasi audio dalam hitungan detik sebagai parameter ketika dekode berhasil, 0 sebaliknya |
voice . encode ( "output.mp3" , ( dur ) => console . log ( dur ) ) ;
// Output: "10.290"
Objek Javascript untuk mengatur opsi untuk file keluaran
Parameter | Keterangan |
---|---|
format | Format yang akan dikodekan/didekode (sutra, webm, mp3, m4a...), parse default dari output |
kecepatan bit | Bitrate keluaran, satuan bps |
frekuensi | Frekuensi keluaran, satuan Hz |
saluran | Saluran keluaran, default ke 1 |
Dekode: Diuji pada mp3
, m4a
, wav
, pcm
Encode: Diuji pada silk
, silk_amr
, webm
sistem operasi | Memerintah |
---|---|
Ubuntu | sudo apt-get install build-essential |
CentOS | sudo yum groupinstall 'Development Tools' |
Mac | Unduh XCode |
$ 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
Untuk CentOS 7:
$ sudo rpm -Uvh http://li.nux.ro/download/nux/dextop/el7/x86_64/nux-dextop-release-0-5.el7.nux.noarch.rpm
Untuk CentOS 6:
$ sudo rpm -Uvh http://li.nux.ro/download/nux/dextop/el6/x86_64/nux-dextop-release-0-2.el6.nux.noarch.rpm
Instal FFMPEG:
$ sudo yum install ffmpeg
$ brew install ffmpeg
MIT © Ang YC