在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 百度语音识别node服务器版demo

百度语音识别node服务器版demo

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:2.07M
  • 下载次数:2
  • 浏览次数:109
  • 发布时间:2021-03-02
  • 实例类别:一般编程问题
  • 发 布 人:好学IT男
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
百度语音识别node服务器版demo 可直接运行, 需要替换自己的appid,返回为json格式。node app.js => 127.0.0.1:2000/baidu 看结果
【实例截图】
【核心代码】
acee1115-fb57-42bf-b1bd-0c8ec217dc96
└── baiduvoice
├── api
│   ├── baidu.js
│   ├── check.js
│   └── h.wav
├── app.js
├── node_modules
│   ├── accepts
│   │   ├── HISTORY.md
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── ajv
│   │   ├── dist
│   │   │   ├── ajv.bundle.js
│   │   │   ├── ajv.min.js
│   │   │   ├── ajv.min.js.map
│   │   │   ├── nodent.min.js
│   │   │   └── regenerator.min.js
│   │   ├── lib
│   │   │   ├── $data.js
│   │   │   ├── ajv.d.ts
│   │   │   ├── ajv.js
│   │   │   ├── cache.js
│   │   │   ├── compile
│   │   │   │   ├── async.js
│   │   │   │   ├── equal.js
│   │   │   │   ├── error_classes.js
│   │   │   │   ├── formats.js
│   │   │   │   ├── index.js
│   │   │   │   ├── resolve.js
│   │   │   │   ├── _rules.js
│   │   │   │   ├── rules.js
│   │   │   │   ├── schema_obj.js
│   │   │   │   ├── ucs2length.js
│   │   │   │   └── util.js
│   │   │   ├── dot
│   │   │   │   ├── allOf.jst
│   │   │   │   ├── anyOf.jst
│   │   │   │   ├── coerce.def
│   │   │   │   ├── const.jst
│   │   │   │   ├── contains.jst
│   │   │   │   ├── custom.jst
│   │   │   │   ├── defaults.def
│   │   │   │   ├── definitions.def
│   │   │   │   ├── dependencies.jst
│   │   │   │   ├── enum.jst
│   │   │   │   ├── errors.def
│   │   │   │   ├── format.jst
│   │   │   │   ├── items.jst
│   │   │   │   ├── _limitItems.jst
│   │   │   │   ├── _limit.jst
│   │   │   │   ├── _limitLength.jst
│   │   │   │   ├── _limitProperties.jst
│   │   │   │   ├── missing.def
│   │   │   │   ├── multipleOf.jst
│   │   │   │   ├── not.jst
│   │   │   │   ├── oneOf.jst
│   │   │   │   ├── pattern.jst
│   │   │   │   ├── properties.jst
│   │   │   │   ├── propertyNames.jst
│   │   │   │   ├── ref.jst
│   │   │   │   ├── required.jst
│   │   │   │   ├── uniqueItems.jst
│   │   │   │   └── validate.jst
│   │   │   ├── dotjs
│   │   │   │   ├── allOf.js
│   │   │   │   ├── anyOf.js
│   │   │   │   ├── const.js
│   │   │   │   ├── contains.js
│   │   │   │   ├── custom.js
│   │   │   │   ├── dependencies.js
│   │   │   │   ├── enum.js
│   │   │   │   ├── format.js
│   │   │   │   ├── items.js
│   │   │   │   ├── _limitItems.js
│   │   │   │   ├── _limit.js
│   │   │   │   ├── _limitLength.js
│   │   │   │   ├── _limitProperties.js
│   │   │   │   ├── multipleOf.js
│   │   │   │   ├── not.js
│   │   │   │   ├── oneOf.js
│   │   │   │   ├── pattern.js
│   │   │   │   ├── properties.js
│   │   │   │   ├── propertyNames.js
│   │   │   │   ├── README.md
│   │   │   │   ├── ref.js
│   │   │   │   ├── required.js
│   │   │   │   ├── uniqueItems.js
│   │   │   │   └── validate.js
│   │   │   ├── keyword.js
│   │   │   ├── patternGroups.js
│   │   │   └── refs
│   │   │   ├── $data.json
│   │   │   ├── json-schema-draft-04.json
│   │   │   ├── json-schema-draft-06.json
│   │   │   └── json-schema-v5.json
│   │   ├── LICENSE
│   │   ├── package.json
│   │   ├── README.md
│   │   └── scripts
│   │   ├── bundle.js
│   │   ├── compile-dots.js
│   │   ├── info
│   │   ├── prepare-tests
│   │   └── travis-gh-pages
│   ├── array-flatten
│   │   ├── array-flatten.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── asn1
│   │   ├── lib
│   │   │   ├── ber
│   │   │   │   ├── errors.js
│   │   │   │   ├── index.js
│   │   │   │   ├── reader.js
│   │   │   │   ├── types.js
│   │   │   │   └── writer.js
│   │   │   └── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   ├── README.md
│   │   └── tst
│   │   └── ber
│   │   ├── reader.test.js
│   │   └── writer.test.js
│   ├── assert-plus
│   │   ├── assert.js
│   │   ├── AUTHORS
│   │   ├── CHANGES.md
│   │   ├── package.json
│   │   └── README.md
│   ├── asynckit
│   │   ├── bench.js
│   │   ├── index.js
│   │   ├── lib
│   │   │   ├── abort.js
│   │   │   ├── async.js
│   │   │   ├── defer.js
│   │   │   ├── iterate.js
│   │   │   ├── readable_asynckit.js
│   │   │   ├── readable_parallel.js
│   │   │   ├── readable_serial.js
│   │   │   ├── readable_serial_ordered.js
│   │   │   ├── state.js
│   │   │   ├── streamify.js
│   │   │   └── terminator.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   ├── parallel.js
│   │   ├── README.md
│   │   ├── serial.js
│   │   ├── serialOrdered.js
│   │   └── stream.js
│   ├── aws4
│   │   ├── aws4.js
│   │   ├── LICENSE
│   │   ├── lru.js
│   │   ├── package.json
│   │   └── README.md
│   ├── aws-sign2
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── baidu-aip-sdk
│   │   ├── package.json
│   │   ├── README.md
│   │   └── src
│   │   ├── AipFace.js
│   │   ├── AipImageCensor.js
│   │   ├── AipImageClassify.js
│   │   ├── AipKg.js
│   │   ├── AipNlp.js
│   │   ├── AipOcr.js
│   │   ├── AipSpeech.js
│   │   ├── auth
│   │   │   ├── bceAuth
│   │   │   │   ├── auth.js
│   │   │   │   ├── crypto.js
│   │   │   │   ├── headers.js
│   │   │   │   └── strings.js
│   │   │   ├── cloudAuth.js
│   │   │   ├── devAuth.js
│   │   │   └── devAuthToken.js
│   │   ├── client
│   │   │   ├── baseClient.js
│   │   │   ├── requestInfo.js
│   │   │   └── task.js
│   │   ├── const
│   │   │   ├── code.js
│   │   │   ├── devScope.js
│   │   │   └── httpHeader.js
│   │   ├── http
│   │   │   ├── httpClientExt.js
│   │   │   ├── httpClient.js
│   │   │   ├── httpClientNlp.js
│   │   │   ├── httpClientVoiceASR.js
│   │   │   └── httpClientVoiceTTS.js
│   │   ├── index.js
│   │   └── util
│   │   ├── eventPromise.js
│   │   └── objectTools.js
│   ├── bcrypt-pbkdf
│   │   ├── index.js
│   │   ├── package.json
│   │   └── README.md
│   ├── body-parser
│   │   ├── HISTORY.md
│   │   ├── index.js
│   │   ├── lib
│   │   │   ├── read.js
│   │   │   └── types
│   │   │   ├── json.js
│   │   │   ├── raw.js
│   │   │   ├── text.js
│   │   │   └── urlencoded.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── boom
│   │   ├── lib
│   │   │   └── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── bytes
│   │   ├── History.md
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── Readme.md
│   ├── caseless
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   ├── README.md
│   │   └── test.js
│   ├── co
│   │   ├── History.md
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── Readme.md
│   ├── combined-stream
│   │   ├── lib
│   │   │   └── combined_stream.js
│   │   ├── License
│   │   ├── package.json
│   │   └── Readme.md
│   ├── connect-multiparty
│   │   ├── HISTORY.md
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── content-disposition
│   │   ├── HISTORY.md
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── content-type
│   │   ├── HISTORY.md
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── cookie
│   │   ├── HISTORY.md
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── cookie-signature
│   │   ├── History.md
│   │   ├── index.js
│   │   ├── package.json
│   │   └── Readme.md
│   ├── core-util-is
│   │   ├── float.patch
│   │   ├── lib
│   │   │   └── util.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   ├── README.md
│   │   └── test.js
│   ├── cryptiles
│   │   ├── lib
│   │   │   └── index.js
│   │   ├── LICENSE
│   │   ├── node_modules
│   │   │   └── boom
│   │   │   ├── lib
│   │   │   │   └── index.js
│   │   │   ├── LICENSE
│   │   │   ├── package.json
│   │   │   └── README.md
│   │   ├── package.json
│   │   └── README.md
│   ├── dashdash
│   │   ├── CHANGES.md
│   │   ├── etc
│   │   │   └── dashdash.bash_completion.in
│   │   ├── lib
│   │   │   └── dashdash.js
│   │   ├── LICENSE.txt
│   │   ├── package.json
│   │   └── README.md
│   ├── debug
│   │   ├── CHANGELOG.md
│   │   ├── component.json
│   │   ├── karma.conf.js
│   │   ├── LICENSE
│   │   ├── Makefile
│   │   ├── node.js
│   │   ├── package.json
│   │   ├── README.md
│   │   └── src
│   │   ├── browser.js
│   │   ├── debug.js
│   │   ├── index.js
│   │   ├── inspector-log.js
│   │   └── node.js
│   ├── delayed-stream
│   │   ├── lib
│   │   │   └── delayed_stream.js
│   │   ├── License
│   │   ├── Makefile
│   │   ├── package.json
│   │   └── Readme.md
│   ├── depd
│   │   ├── History.md
│   │   ├── index.js
│   │   ├── lib
│   │   │   ├── browser
│   │   │   │   └── index.js
│   │   │   └── compat
│   │   │   ├── callsite-tostring.js
│   │   │   ├── event-listener-count.js
│   │   │   └── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── Readme.md
│   ├── destroy
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── ecc-jsbn
│   │   ├── index.js
│   │   ├── lib
│   │   │   ├── ec.js
│   │   │   ├── LICENSE-jsbn
│   │   │   └── sec.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   ├── README.md
│   │   └── test.js
│   ├── ee-first
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── encodeurl
│   │   ├── HISTORY.md
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── escape-html
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── Readme.md
│   ├── etag
│   │   ├── HISTORY.md
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── express
│   │   ├── History.md
│   │   ├── index.js
│   │   ├── lib
│   │   │   ├── application.js
│   │   │   ├── express.js
│   │   │   ├── middleware
│   │   │   │   ├── init.js
│   │   │   │   └── query.js
│   │   │   ├── request.js
│   │   │   ├── response.js
│   │   │   ├── router
│   │   │   │   ├── index.js
│   │   │   │   ├── layer.js
│   │   │   │   └── route.js
│   │   │   ├── utils.js
│   │   │   └── view.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── Readme.md
│   ├── extend
│   │   ├── CHANGELOG.md
│   │   ├── component.json
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── extsprintf
│   │   ├── jsl.node.conf
│   │   ├── lib
│   │   │   └── extsprintf.js
│   │   ├── LICENSE
│   │   ├── Makefile
│   │   ├── Makefile.targ
│   │   ├── package.json
│   │   └── README.md
│   ├── fast-deep-equal
│   │   ├── benchmark
│   │   │   └── index.js
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   ├── README.md
│   │   └── spec
│   │   ├── index.spec.js
│   │   └── tests.js
│   ├── fast-json-stable-stringify
│   │   ├── benchmark
│   │   │   ├── index.js
│   │   │   └── test.json
│   │   ├── example
│   │   │   ├── key_cmp.js
│   │   │   ├── nested.js
│   │   │   ├── str.js
│   │   │   └── value_cmp.js
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   ├── README.md
│   │   └── test
│   │   ├── cmp.js
│   │   ├── nested.js
│   │   ├── str.js
│   │   └── to-json.js
│   ├── fd-slicer
│   │   ├── CHANGELOG.md
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   ├── README.md
│   │   └── test
│   │   └── test.js
│   ├── finalhandler
│   │   ├── HISTORY.md
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── forever-agent
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── form-data
│   │   ├── lib
│   │   │   ├── browser.js
│   │   │   ├── form_data.js
│   │   │   └── populate.js
│   │   ├── License
│   │   ├── package.json
│   │   ├── README.md
│   │   └── README.md.bak
│   ├── forwarded
│   │   ├── HISTORY.md
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── fresh
│   │   ├── HISTORY.md
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── fs
│   │   ├── package.json
│   │   └── README.md
│   ├── getpass
│   │   ├── lib
│   │   │   └── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── har-schema
│   │   ├── lib
│   │   │   ├── afterRequest.json
│   │   │   ├── beforeRequest.json
│   │   │   ├── browser.json
│   │   │   ├── cache.json
│   │   │   ├── content.json
│   │   │   ├── cookie.json
│   │   │   ├── creator.json
│   │   │   ├── entry.json
│   │   │   ├── har.json
│   │   │   ├── header.json
│   │   │   ├── index.js
│   │   │   ├── log.json
│   │   │   ├── page.json
│   │   │   ├── pageTimings.json
│   │   │   ├── postData.json
│   │   │   ├── query.json
│   │   │   ├── request.json
│   │   │   ├── response.json
│   │   │   └── timings.json
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── har-validator
│   │   ├── lib
│   │   │   ├── async.js
│   │   │   ├── error.js
│   │   │   └── promise.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── hawk
│   │   ├── client.js
│   │   ├── dist
│   │   │   └── browser.js
│   │   ├── lib
│   │   │   ├── browser.js
│   │   │   ├── client.js
│   │   │   ├── crypto.js
│   │   │   ├── index.js
│   │   │   ├── server.js
│   │   │   └── utils.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── hoek
│   │   ├── lib
│   │   │   ├── escape.js
│   │   │   └── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── http-errors
│   │   ├── HISTORY.md
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── node_modules
│   │   │   └── setprototypeof
│   │   │   ├── index.js
│   │   │   ├── LICENSE
│   │   │   ├── package.json
│   │   │   └── README.md
│   │   ├── package.json
│   │   └── README.md
│   ├── http-signature
│   │   ├── CHANGES.md
│   │   ├── http_signing.md
│   │   ├── lib
│   │   │   ├── index.js
│   │   │   ├── parser.js
│   │   │   ├── signer.js
│   │   │   ├── utils.js
│   │   │   └── verify.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── iconv-lite
│   │   ├── Changelog.md
│   │   ├── encodings
│   │   │   ├── dbcs-codec.js
│   │   │   ├── dbcs-data.js
│   │   │   ├── index.js
│   │   │   ├── internal.js
│   │   │   ├── sbcs-codec.js
│   │   │   ├── sbcs-data-generated.js
│   │   │   ├── sbcs-data.js
│   │   │   ├── tables
│   │   │   │   ├── big5-added.json
│   │   │   │   ├── cp936.json
│   │   │   │   ├── cp949.json
│   │   │   │   ├── cp950.json
│   │   │   │   ├── eucjp.json
│   │   │   │   ├── gb18030-ranges.json
│   │   │   │   ├── gbk-added.json
│   │   │   │   └── shiftjis.json
│   │   │   ├── utf16.js
│   │   │   └── utf7.js
│   │   ├── lib
│   │   │   ├── bom-handling.js
│   │   │   ├── extend-node.js
│   │   │   ├── index.d.ts
│   │   │   ├── index.js
│   │   │   └── streams.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── inherits
│   │   ├── inherits_browser.js
│   │   ├── inherits.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── ipaddr.js
│   │   ├── bower.json
│   │   ├── Cakefile
│   │   ├── ipaddr.min.js
│   │   ├── lib
│   │   │   └── ipaddr.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   ├── README.md
│   │   ├── src
│   │   │   └── ipaddr.coffee
│   │   └── test
│   │   └── ipaddr.test.coffee
│   ├── isstream
│   │   ├── isstream.js
│   │   ├── LICENSE.md
│   │   ├── package.json
│   │   ├── README.md
│   │   └── test.js
│   ├── is-typedarray
│   │   ├── index.js
│   │   ├── LICENSE.md
│   │   ├── package.json
│   │   ├── README.md
│   │   └── test.js
│   ├── jsbn
│   │   ├── example.html
│   │   ├── example.js
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── json-schema
│   │   ├── draft-00
│   │   │   ├── hyper-schema
│   │   │   ├── json-ref
│   │   │   ├── links
│   │   │   └── schema
│   │   ├── draft-01
│   │   │   ├── hyper-schema
│   │   │   ├── json-ref
│   │   │   ├── links
│   │   │   └── schema
│   │   ├── draft-02
│   │   │   ├── hyper-schema
│   │   │   ├── json-ref
│   │   │   ├── links
│   │   │   └── schema
│   │   ├── draft-03
│   │   │   ├── examples
│   │   │   │   ├── address
│   │   │   │   ├── calendar
│   │   │   │   ├── card
│   │   │   │   ├── geo
│   │   │   │   └── interfaces
│   │   │   ├── hyper-schema
│   │   │   ├── json-ref
│   │   │   ├── links
│   │   │   └── schema
│   │   ├── draft-04
│   │   │   ├── hyper-schema
│   │   │   ├── links
│   │   │   └── schema
│   │   ├── draft-zyp-json-schema-03.xml
│   │   ├── draft-zyp-json-schema-04.xml
│   │   ├── lib
│   │   │   ├── links.js
│   │   │   └── validate.js
│   │   ├── package.json
│   │   ├── README.md
│   │   └── test
│   │   └── tests.js
│   ├── json-schema-traverse
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   ├── README.md
│   │   └── spec
│   │   ├── fixtures
│   │   │   └── schema.js
│   │   └── index.spec.js
│   ├── json-stringify-safe
│   │   ├── CHANGELOG.md
│   │   ├── LICENSE
│   │   ├── Makefile
│   │   ├── package.json
│   │   ├── README.md
│   │   ├── stringify.js
│   │   └── test
│   │   ├── mocha.opts
│   │   └── stringify_test.js
│   ├── jsprim
│   │   ├── CHANGES.md
│   │   ├── CONTRIBUTING.md
│   │   ├── lib
│   │   │   └── jsprim.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── media-typer
│   │   ├── HISTORY.md
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── merge-descriptors
│   │   ├── HISTORY.md
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── methods
│   │   ├── HISTORY.md
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── mime
│   │   ├── build
│   │   │   ├── build.js
│   │   │   └── test.js
│   │   ├── cli.js
│   │   ├── LICENSE
│   │   ├── mime.js
│   │   ├── package.json
│   │   ├── README.md
│   │   └── types.json
│   ├── mime-db
│   │   ├── db.json
│   │   ├── HISTORY.md
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── mime-types
│   │   ├── HISTORY.md
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── ms
│   │   ├── index.js
│   │   ├── license.md
│   │   ├── package.json
│   │   └── readme.md
│   ├── multipart
│   │   ├── index.js
│   │   ├── node_modules
│   │   │   └── mime
│   │   │   ├── LICENSE
│   │   │   ├── mime.js
│   │   │   ├── package.json
│   │   │   ├── README.md
│   │   │   ├── test.js
│   │   │   └── types
│   │   │   ├── mime.types
│   │   │   └── node.types
│   │   ├── package.json
│   │   └── test
│   │   └── simple.js
│   ├── multiparty
│   │   ├── CHANGELOG.md
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── negotiator
│   │   ├── HISTORY.md
│   │   ├── index.js
│   │   ├── lib
│   │   │   ├── charset.js
│   │   │   ├── encoding.js
│   │   │   ├── language.js
│   │   │   └── mediaType.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── oauth-sign
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── on-finished
│   │   ├── HISTORY.md
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── parseurl
│   │   ├── HISTORY.md
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── path-to-regexp
│   │   ├── History.md
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── Readme.md
│   ├── pend
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   ├── README.md
│   │   └── test.js
│   ├── performance-now
│   │   ├── lib
│   │   │   ├── performance-now.js
│   │   │   └── performance-now.js.map
│   │   ├── license.txt
│   │   ├── package.json
│   │   ├── README.md
│   │   ├── src
│   │   │   ├── index.d.ts
│   │   │   └── performance-now.coffee
│   │   └── test
│   │   ├── mocha.opts
│   │   ├── performance-now.coffee
│   │   ├── scripts
│   │   │   ├── delayed-call.coffee
│   │   │   ├── delayed-require.coffee
│   │   │   ├── difference.coffee
│   │   │   └── initial-value.coffee
│   │   └── scripts.coffee
│   ├── proxy-addr
│   │   ├── HISTORY.md
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── punycode
│   │   ├── LICENSE-MIT.txt
│   │   ├── package.json
│   │   ├── punycode.js
│   │   └── README.md
│   ├── qs
│   │   ├── CHANGELOG.md
│   │   ├── dist
│   │   │   └── qs.js
│   │   ├── lib
│   │   │   ├── formats.js
│   │   │   ├── index.js
│   │   │   ├── parse.js
│   │   │   ├── stringify.js
│   │   │   └── utils.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   ├── README.md
│   │   └── test
│   │   ├── index.js
│   │   ├── parse.js
│   │   ├── stringify.js
│   │   └── utils.js
│   ├── range-parser
│   │   ├── HISTORY.md
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── raw-body
│   │   ├── HISTORY.md
│   │   ├── index.d.ts
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── request
│   │   ├── CHANGELOG.md
│   │   ├── index.js
│   │   ├── lib
│   │   │   ├── auth.js
│   │   │   ├── cookies.js
│   │   │   ├── getProxyFromURI.js
│   │   │   ├── har.js
│   │   │   ├── helpers.js
│   │   │   ├── multipart.js
│   │   │   ├── oauth.js
│   │   │   ├── querystring.js
│   │   │   ├── redirect.js
│   │   │   └── tunnel.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   ├── README.md
│   │   └── request.js
│   ├── safe-buffer
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   ├── README.md
│   │   └── test.js
│   ├── send
│   │   ├── HISTORY.md
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── serve-static
│   │   ├── HISTORY.md
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── setprototypeof
│   │   ├── index.d.ts
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── sntp
│   │   ├── lib
│   │   │   └── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── sshpk
│   │   ├── bin
│   │   │   ├── sshpk-conv
│   │   │   ├── sshpk-sign
│   │   │   └── sshpk-verify
│   │   ├── lib
│   │   │   ├── algs.js
│   │   │   ├── certificate.js
│   │   │   ├── dhe.js
│   │   │   ├── ed-compat.js
│   │   │   ├── errors.js
│   │   │   ├── fingerprint.js
│   │   │   ├── formats
│   │   │   │   ├── auto.js
│   │   │   │   ├── openssh-cert.js
│   │   │   │   ├── pem.js
│   │   │   │   ├── pkcs1.js
│   │   │   │   ├── pkcs8.js
│   │   │   │   ├── rfc4253.js
│   │   │   │   ├── ssh.js
│   │   │   │   ├── ssh-private.js
│   │   │   │   ├── x509.js
│   │   │   │   └── x509-pem.js
│   │   │   ├── identity.js
│   │   │   ├── index.js
│   │   │   ├── key.js
│   │   │   ├── private-key.js
│   │   │   ├── signature.js
│   │   │   ├── ssh-buffer.js
│   │   │   └── utils.js
│   │   ├── LICENSE
│   │   ├── man
│   │   │   └── man1
│   │   │   ├── sshpk-conv.1
│   │   │   ├── sshpk-sign.1
│   │   │   └── sshpk-verify.1
│   │   ├── package.json
│   │   └── README.md
│   ├── statuses
│   │   ├── codes.json
│   │   ├── HISTORY.md
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── stringstream
│   │   ├── example.js
│   │   ├── LICENSE.txt
│   │   ├── package.json
│   │   ├── README.md
│   │   └── stringstream.js
│   ├── tough-cookie
│   │   ├── lib
│   │   │   ├── cookie.js
│   │   │   ├── memstore.js
│   │   │   ├── pathMatch.js
│   │   │   ├── permuteDomain.js
│   │   │   ├── pubsuffix.js
│   │   │   └── store.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── tunnel-agent
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── tweetnacl
│   │   ├── AUTHORS.md
│   │   ├── CHANGELOG.md
│   │   ├── LICENSE
│   │   ├── nacl.d.ts
│   │   ├── nacl-fast.js
│   │   ├── nacl-fast.min.js
│   │   ├── nacl.js
│   │   ├── nacl.min.js
│   │   ├── package.json
│   │   ├── PULL_REQUEST_TEMPLATE.md
│   │   └── README.md
│   ├── type-is
│   │   ├── HISTORY.md
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── underscore
│   │   ├── LICENSE
│   │   ├── package.json
│   │   ├── README.md
│   │   ├── underscore.js
│   │   ├── underscore-min.js
│   │   └── underscore-min.map
│   ├── unpipe
│   │   ├── HISTORY.md
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── utils-merge
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   ├── uuid
│   │   ├── AUTHORS
│   │   ├── bin
│   │   │   └── uuid
│   │   ├── HISTORY.md
│   │   ├── index.js
│   │   ├── lib
│   │   │   ├── bytesToUuid.js
│   │   │   ├── rng-browser.js
│   │   │   ├── rng.js
│   │   │   ├── sha1-browser.js
│   │   │   └── sha1.js
│   │   ├── LICENSE.md
│   │   ├── package.json
│   │   ├── README.md
│   │   ├── v1.js
│   │   ├── v4.js
│   │   └── v5.js
│   ├── vary
│   │   ├── HISTORY.md
│   │   ├── index.js
│   │   ├── LICENSE
│   │   ├── package.json
│   │   └── README.md
│   └── verror
│   ├── CHANGES.md
│   ├── CONTRIBUTING.md
│   ├── lib
│   │   └── verror.js
│   ├── LICENSE
│   ├── package.json
│   └── README.md
├── package.json
└── package-lock.json

203 directories, 858 files

标签:

实例下载地址

百度语音识别node服务器版demo

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警