-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 772e924
Showing
9 changed files
with
1,330 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text=auto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"files.exclude": { | ||
"**/.git": true, | ||
"**/.svn": true, | ||
"**/.hg": true, | ||
"**/CVS": true, | ||
"**/.DS_Store": true, | ||
"**/Thumbs.db": true, | ||
"**/.ruby-lsp": true | ||
}, | ||
"hide-files.files": [] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"AppVersion": "1.1.0.0", | ||
"Title": "Clean Audio", | ||
"Thumbnail": "ypfdr3lc.jpg", | ||
"Preview": "bqqlz4yh.gif", | ||
"Desc": "Smooth Audio Spectrum Visualizer reacting to media audio and cover", | ||
"Author": "Liam S.", | ||
"License": "MIT", | ||
"Contact": null, | ||
"Type": 1, | ||
"FileName": "index.html", | ||
"Arguments": "--system-nowplaying --audio", | ||
"IsAbsolutePath": false, | ||
"Id": null, | ||
"Tags": null, | ||
"Version": 0 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,135 @@ | ||
{ | ||
"amplitude": { | ||
"max": 10.0, | ||
"min": 0.1, | ||
"tick": 1, | ||
"step": 0.1, | ||
"text": "Audio Amplification", | ||
"type": "slider", | ||
"value": 2.5 | ||
}, | ||
"samples": { | ||
"max": 50, | ||
"min": 5, | ||
"tick": 1, | ||
"step": 1, | ||
"text": "Sample Points", | ||
"type": "slider", | ||
"value": 15 | ||
}, | ||
"highres": { | ||
"type": "checkbox", | ||
"value": true, | ||
"text": "High Res." | ||
}, | ||
"sampleType": { | ||
"type": "dropdown", | ||
"value": 2, | ||
"text": "Sample Type", | ||
"items": [ | ||
"Points", | ||
"Average", | ||
"Maximum" | ||
] | ||
}, | ||
"horizontal": { | ||
"type": "dropdown", | ||
"value": 0, | ||
"text": "Horizontal mode", | ||
"items": [ | ||
"None", | ||
"Arm", | ||
"Position", | ||
"Position + Arm" | ||
] | ||
}, | ||
"smoothing": { | ||
"max": 50.0, | ||
"min": 1.0, | ||
"tick": 1, | ||
"step": 1.0, | ||
"text": "Visual Smoothing", | ||
"type": "slider", | ||
"value": 10.0 | ||
}, | ||
"colorMode": { | ||
"type": "dropdown", | ||
"value": 1, | ||
"text": "Color Mode", | ||
"items": [ | ||
"Cover", | ||
"Suggestive", | ||
"Magic", | ||
"Generated", | ||
"Dominant", | ||
"Custom" | ||
] | ||
}, | ||
"mainColor1": { | ||
"text": "Main Color", | ||
"type": "color", | ||
"value": "#E29578" | ||
}, | ||
"mainColor2": { | ||
"type": "color", | ||
"value": "#FFDDD2" | ||
}, | ||
"bgColor1": { | ||
"text": "Backgroud Color", | ||
"type": "color", | ||
"value": "#006D77" | ||
}, | ||
"bgColor2": { | ||
"type": "color", | ||
"value": "#83C5BE" | ||
}, | ||
|
||
"ProjType" : { | ||
"type": "dropdown", | ||
"value": 1, | ||
"text": "Projection Type", | ||
"items": [ | ||
"Normal", | ||
"Squared", | ||
"freq > id" | ||
] | ||
}, | ||
"gradient" : { | ||
"type": "checkbox", | ||
"value": true, | ||
"text": "Main Gradient" | ||
}, | ||
"gradientBG" : { | ||
"type": "checkbox", | ||
"value": true, | ||
"text": "Background Gradient" | ||
}, | ||
"outlineOnly": { | ||
"type": "checkbox", | ||
"value": false, | ||
"text": "Outline" | ||
}, | ||
"screenshake": { | ||
"max": 2.5, | ||
"min": 0.0, | ||
"tick": 0.1, | ||
"step": 0.1, | ||
"text": "Screenshake", | ||
"type": "slider", | ||
"value": 0.0 | ||
}, | ||
"shadow": { | ||
"type": "checkbox", | ||
"value": false, | ||
"text": "Shadow" | ||
}, | ||
"layout": { | ||
"type": "dropdown", | ||
"value": 0, | ||
"text": "Layout", | ||
"items": [ | ||
"Centre", | ||
"Top-Down" | ||
] | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<!DOCTYPE html> | ||
<html lang="en" dir="ltr"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Juicy Bubble Sound</title> | ||
<style media="screen"> | ||
body{ | ||
margin:0; | ||
overflow:hidden; | ||
} | ||
img{ | ||
scale: 0.0; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<canvas id="canvas" width="2560" height="1440"></canvas> | ||
<img id="cover" /> | ||
<script src="js/color-thief.umd.js"></script> | ||
<script src="js/viz.js" charset="utf-8"></script> | ||
</body> | ||
</html> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.