Skip to content

Commit

Permalink
Merge pull request #4 from aapavlov1994/package_name_change
Browse files Browse the repository at this point in the history
package name change
  • Loading branch information
aapavlov1994 committed Apr 13, 2022
2 parents 949d52c + 2473041 commit e0947e2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# audiosprite-breezy

### What?

This is a `ffmpeg` wrapper that will take in **multiple audio files** and combines them **into a single file**. Silent gaps will be put between the parts so that every new part starts from full second and there is at least 1 second pause between every part. The final file will be exported in `mp3`, `ogg`, `ac3`, `m4a` and `caf`(IMA-ADPCM) to support as many devices as possible. This tool will also generate a `JSON` file that is compatible with [Howler.js](https://github.com/goldfire/howler.js) or [zynga/jukebox](https://github.com/zynga/jukebox) framework.
Expand All @@ -9,11 +11,11 @@ iOS, Windows Phone and some Android phones have very limited HTML5 audio support
### Usage

```
npm install audiosprite-fresh
npm install audiosprite-breezy
```

```js
var audiosprite = require('audiosprite-fresh')
var audiosprite = require('audiosprite-breezy')

var files = ['file1.mp3', 'file2.mp3']
var opts = { output: 'result' }
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "audiosprite-fresh",
"name": "audiosprite-breezy",
"description": "Concat small audio files into single file and export in many formats.",
"keywords": [
"audio",
Expand All @@ -15,12 +15,12 @@
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aapavlov1994/audiosprite-fresh.git"
"url": "https://github.com/aapavlov1994/audiosprite-breezy.git"
},
"bugs": {
"url": "https://github.com/aapavlov1994/audiosprite-fresh/issues"
"url": "https://github.com/aapavlov1994/audiosprite-breezy/issues"
},
"homepage": "https://github.com/aapavlov1994/audiosprite-fresh#readme",
"homepage": "https://github.com/aapavlov1994/audiosprite-breezy#readme",
"main": "src/index.js",
"files": [
"src"
Expand Down

0 comments on commit e0947e2

Please sign in to comment.