Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update cli.js #4

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ cli.command('encode [input] [output]', 'encode speech input to silk format')
.option('--fsHz [fs]', 'API sampling rate in Hz', { default: 24000 })
.option('--fxMaxInternal [fxMaxInternal]', 'Maximum internal sampling rate in Hz', { default: 0 })
.option('--packetLength [packageLength]', 'Packet interval in ms', { default: 20 })
.option('--rate', 'Target bitrate', { default: 25000 })
.option('--loss', 'Uplink loss estimate, in percent (0-100)', { default: 0 })
.option('--complexity', 'Set complexity, 0: low, 1: medium, 2: high', { default: 2 })
.option('--rate [range]', 'Target bitrate', { default: 25000 })
.option('--loss [loss]', 'Uplink loss estimate, in percent (0-100)', { default: 0 })
.option('--complexity [complexity]', 'Set complexity, 0: low, 1: medium, 2: high', { default: 2 })
.option('--inbandFEC', 'Enable inband FEC usage', { default: false })
.option('--dtx', 'Enable DTX', { default: false })
.option('--tencent', 'Add Tencent (Wechat, QQ) header in exported file', { default: false })
Expand Down