Skip to content

Commit

Permalink
added node version in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Danilo Romano committed Mar 18, 2022
1 parent 61fc7d8 commit bcbd1b9
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 36 deletions.
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
"type": "module",
"description": "Seja bem vindo(a) à sexta Semana Javascript Expert. Este é o código inicial para iniciar nossa jornada.",
"main": "index.js",
"engines": {
"node": "17.7.1"
},
"scripts": {
"start": "nodemon",
"test": "LOG_DISABLED=true NODE_OPTIONS='--experimental-vm-modules --no-warnings' npx jest --runInBand --no-cache",
Expand Down
33 changes: 33 additions & 0 deletions sox-commands.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
sox \
--i \
"audio/songs/conversation.mp3"

sox \
--i \
"audio/fx/Boo! Sound Effect (128 kbps).mp3"

# converter para o mesmo bitrate
sox \
-v 0.99 \
-t mp3 \
"audio/fx/Applause Sound Effect HD No Copyright (128 kbps).mp3" \
-r 48000 \
-t mp3 \
"output.mp3"

# obter o bitrate
sox \
--i \
-B \
"audio/fx/Boo! Sound Effect (128 kbps).mp3"

# concatenar dois audios
sox \
-t mp3 \
-v 0.99 \
-m "audio/songs/conversation.mp3" \
-t mp3 \
-v 0.99 \
"audio/fx/Fart - Gaming Sound Effect (HD) (128 kbps).mp3" \
-t mp3 \
"output.mp3"
33 changes: 0 additions & 33 deletions sox-commands.txt

This file was deleted.

3 changes: 0 additions & 3 deletions specs.yaml

This file was deleted.

0 comments on commit bcbd1b9

Please sign in to comment.