diff --git a/openpeon/files/config.json b/openpeon/files/config.json index 5d045b2..2d15ff2 100644 --- a/openpeon/files/config.json +++ b/openpeon/files/config.json @@ -1,6 +1,6 @@ { - "activePack": "glados", - "volume": 0.5, + "activePack": "solid_snake", + "volume": 1, "muted": false, "enabledCategories": { "session.start": true, diff --git a/openpeon/files/packs/gustave/cut-clips.sh b/openpeon/files/packs/gustave/cut-clips.sh new file mode 100755 index 0000000..ecc840b --- /dev/null +++ b/openpeon/files/packs/gustave/cut-clips.sh @@ -0,0 +1,25 @@ +#!/usr/bin/env bash +# Cut Gustave clips from Clair Obscur voice lines + +SOURCE="/tmp/clair-obscur-downloads/gustave.wav" +OUTDIR="$(dirname "$0")/sounds" + +mkdir -p "$OUTDIR" + +# session.start +ffmpeg -y -i "$SOURCE" -ss 00:00:02.500 -to 00:00:04.500 -c copy "$OUTDIR/expedition-continues-1.wav" +ffmpeg -y -i "$SOURCE" -ss 00:00:04.500 -to 00:00:06.500 -c copy "$OUTDIR/expedition-continues-2.wav" +ffmpeg -y -i "$SOURCE" -ss 00:00:09.000 -to 00:00:10.000 -c copy "$OUTDIR/let-me-help.wav" + +# task.complete +ffmpeg -y -i "$SOURCE" -ss 00:08:17.000 -to 00:08:18.400 -c copy "$OUTDIR/tomorrow-comes.wav" + +# task.error +ffmpeg -y -i "$SOURCE" -ss 00:01:00.000 -to 00:01:02.000 -c copy "$OUTDIR/this-was-weak.wav" +ffmpeg -y -i "$SOURCE" -ss 00:04:07.500 -to 00:04:11.300 -c copy "$OUTDIR/putain.wav" + +# input.required +ffmpeg -y -i "$SOURCE" -ss 00:05:58.200 -to 00:05:59.900 -c copy "$OUTDIR/what-are-we-gonna-do.wav" + +echo "Done! Clips saved to $OUTDIR" +ls -la "$OUTDIR" diff --git a/openpeon/files/packs/gustave/openpeon.json b/openpeon/files/packs/gustave/openpeon.json new file mode 100644 index 0000000..4b4cfd8 --- /dev/null +++ b/openpeon/files/packs/gustave/openpeon.json @@ -0,0 +1,37 @@ +{ + "name": "Gustave", + "version": "1.0.0", + "author": "Custom", + "description": "Gustave from Clair Obscur: Expedition 33", + "categories": { + "session.start": { + "sounds": [ + {"file": "sounds/expedition-continues-1.wav", "label": "The expedition continues"}, + {"file": "sounds/expedition-continues-2.wav", "label": "The expedition continues (alt)"}, + {"file": "sounds/let-me-help.wav", "label": "Let me help"} + ] + }, + "task.acknowledge": { + "sounds": [] + }, + "task.complete": { + "sounds": [ + {"file": "sounds/tomorrow-comes.wav", "label": "Tomorrow comes"} + ] + }, + "task.error": { + "sounds": [ + {"file": "sounds/this-was-weak.wav", "label": "This was weak"}, + {"file": "sounds/putain.wav", "label": "Putain"} + ] + }, + "input.required": { + "sounds": [ + {"file": "sounds/what-are-we-gonna-do.wav", "label": "What are we gonna do, huh?"} + ] + }, + "resource.limit": { + "sounds": [] + } + } +} diff --git a/openpeon/files/packs/gustave/sounds/expedition-continues-1.wav b/openpeon/files/packs/gustave/sounds/expedition-continues-1.wav new file mode 100644 index 0000000..68ee5a4 Binary files /dev/null and b/openpeon/files/packs/gustave/sounds/expedition-continues-1.wav differ diff --git a/openpeon/files/packs/gustave/sounds/expedition-continues-2.wav b/openpeon/files/packs/gustave/sounds/expedition-continues-2.wav new file mode 100644 index 0000000..7f8d3b1 Binary files /dev/null and b/openpeon/files/packs/gustave/sounds/expedition-continues-2.wav differ diff --git a/openpeon/files/packs/gustave/sounds/let-me-help.wav b/openpeon/files/packs/gustave/sounds/let-me-help.wav new file mode 100644 index 0000000..43110b4 Binary files /dev/null and b/openpeon/files/packs/gustave/sounds/let-me-help.wav differ diff --git a/openpeon/files/packs/gustave/sounds/putain.wav b/openpeon/files/packs/gustave/sounds/putain.wav new file mode 100644 index 0000000..69fc8dc Binary files /dev/null and b/openpeon/files/packs/gustave/sounds/putain.wav differ diff --git a/openpeon/files/packs/gustave/sounds/this-was-weak.wav b/openpeon/files/packs/gustave/sounds/this-was-weak.wav new file mode 100644 index 0000000..53272f9 Binary files /dev/null and b/openpeon/files/packs/gustave/sounds/this-was-weak.wav differ diff --git a/openpeon/files/packs/gustave/sounds/tomorrow-comes.wav b/openpeon/files/packs/gustave/sounds/tomorrow-comes.wav new file mode 100644 index 0000000..8f8c490 Binary files /dev/null and b/openpeon/files/packs/gustave/sounds/tomorrow-comes.wav differ diff --git a/openpeon/files/packs/gustave/sounds/what-are-we-gonna-do.wav b/openpeon/files/packs/gustave/sounds/what-are-we-gonna-do.wav new file mode 100644 index 0000000..fc6ba68 Binary files /dev/null and b/openpeon/files/packs/gustave/sounds/what-are-we-gonna-do.wav differ