shine icon indicating copy to clipboard operation
shine copied to clipboard

Super fast fixed-point MP3 encoder with JS/wasm and android native bindings.

Results 15 shine issues
Sort by recently updated
recently updated
newest added

- add a simple VS project for the library and the application - move multiple compiler detection into a header for simplification

Bumps [postcss](https://github.com/postcss/postcss) to 8.4.31 and updates ancestor dependency [next](https://github.com/vercel/next.js). These dependencies need to be updated together. Updates `postcss` from 8.4.14 to 8.4.31 Release notes Sourced from postcss's releases. 8.4.31 Fixed...

dependencies

CMakeLists.txt ``` cmake_minimum_required(VERSION 3.20) project(libshine) include_directories(src src/lib src/bin) add_library( shine STATIC src/lib/bitstream.c src/lib/huffman.c src/lib/l3bitstream.c src/lib/l3loop.c src/lib/l3mdct.c src/lib/l3subband.c src/lib/layer3.c src/lib/reservoir.c src/lib/tables.c) install( TARGETS shine LIBRARY DESTINATION lib # for shared libs...

Bumps [semver](https://github.com/npm/node-semver) from 6.3.0 to 6.3.1. Release notes Sourced from semver's releases. v6.3.1 6.3.1 (2023-07-10) Bug Fixes 928e56d #591 better handling of whitespace (#591) (@​lukekarrys, @​joaomoreno, @​nicolo-ribaudo) Changelog Sourced from...

dependencies

Bumps [word-wrap](https://github.com/jonschlinkert/word-wrap) from 1.2.3 to 1.2.5. Release notes Sourced from word-wrap's releases. 1.2.5 Changes: Reverts default value for options.indent to two spaces ' '. Full Changelog: https://github.com/jonschlinkert/word-wrap/compare/1.2.4...1.2.5 1.2.4 What's Changed...

dependencies

When encoding a 32khz WAV at a bitrate of 48kbps, shine generates a frame header of `FF FB 3A C4` instead of the expected `FF FB 38 C4`; the padding...

If the bitstream cache doesn't happen to be filled to an int (32-bit) boundary, the final mp3 frame may be truncated, resulting in a non-fatal error when playing that final...

Hi, I'm currently trying to add npm support for this package. However, right now when I go into the `js` folder and run make, I get a different output in...

Project is missing quality comparison as faster algorithm with missing Psychoacoustic Model could have lower audio quality at same bitrate.