├── .gitattributes ├── .github ├── CODE_OF_CONDUCT.md ├── COMMIT_CONVENTION.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── 01-bug_report.yml │ ├── 02-feature_request.yml │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── .gitmodules ├── .prettierignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── binding.gyp ├── deps ├── binding.gyp └── config │ └── opus │ ├── android │ ├── arm │ │ └── config.h │ └── arm64 │ │ └── config.h │ ├── freebsd │ └── x64 │ │ └── config.h │ ├── linux │ ├── arm │ │ └── config.h │ ├── arm64 │ │ └── config.h │ ├── ia32 │ │ └── config.h │ └── x64 │ │ └── config.h │ ├── mac │ ├── arm64 │ │ └── config.h │ └── x64 │ │ └── config.h │ └── win │ └── x64 │ └── config.h ├── eslint.config.mjs ├── lib └── index.js ├── package.json ├── src ├── node-opus.cc └── node-opus.h ├── tests ├── frame.opus └── test.js └── typings └── index.d.ts /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/opus/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/COMMIT_CONVENTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/opus/HEAD/.github/COMMIT_CONVENTION.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/opus/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/01-bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/opus/HEAD/.github/ISSUE_TEMPLATE/01-bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/02-feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/opus/HEAD/.github/ISSUE_TEMPLATE/02-feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/opus/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/opus/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/opus/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/opus/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/opus/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/opus/HEAD/.gitmodules -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/opus/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/opus/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/opus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/opus/HEAD/README.md -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/opus/HEAD/binding.gyp -------------------------------------------------------------------------------- /deps/binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/opus/HEAD/deps/binding.gyp -------------------------------------------------------------------------------- /deps/config/opus/android/arm/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/opus/HEAD/deps/config/opus/android/arm/config.h -------------------------------------------------------------------------------- /deps/config/opus/android/arm64/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/opus/HEAD/deps/config/opus/android/arm64/config.h -------------------------------------------------------------------------------- /deps/config/opus/freebsd/x64/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/opus/HEAD/deps/config/opus/freebsd/x64/config.h -------------------------------------------------------------------------------- /deps/config/opus/linux/arm/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/opus/HEAD/deps/config/opus/linux/arm/config.h -------------------------------------------------------------------------------- /deps/config/opus/linux/arm64/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/opus/HEAD/deps/config/opus/linux/arm64/config.h -------------------------------------------------------------------------------- /deps/config/opus/linux/ia32/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/opus/HEAD/deps/config/opus/linux/ia32/config.h -------------------------------------------------------------------------------- /deps/config/opus/linux/x64/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/opus/HEAD/deps/config/opus/linux/x64/config.h -------------------------------------------------------------------------------- /deps/config/opus/mac/arm64/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/opus/HEAD/deps/config/opus/mac/arm64/config.h -------------------------------------------------------------------------------- /deps/config/opus/mac/x64/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/opus/HEAD/deps/config/opus/mac/x64/config.h -------------------------------------------------------------------------------- /deps/config/opus/win/x64/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/opus/HEAD/deps/config/opus/win/x64/config.h -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/opus/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/opus/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/opus/HEAD/package.json -------------------------------------------------------------------------------- /src/node-opus.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/opus/HEAD/src/node-opus.cc -------------------------------------------------------------------------------- /src/node-opus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/opus/HEAD/src/node-opus.h -------------------------------------------------------------------------------- /tests/frame.opus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/opus/HEAD/tests/frame.opus -------------------------------------------------------------------------------- /tests/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/opus/HEAD/tests/test.js -------------------------------------------------------------------------------- /typings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordjs/opus/HEAD/typings/index.d.ts --------------------------------------------------------------------------------