Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
MiroloTech committed Oct 17, 2024
0 parents commit 772e924
Show file tree
Hide file tree
Showing 9 changed files with 1,330 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto
12 changes: 12 additions & 0 deletions .vscode/settings.json
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": []
}
17 changes: 17 additions & 0 deletions LivelyInfo.json
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
}
135 changes: 135 additions & 0 deletions LivelyProperties.json
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"
]
}
}
Binary file added bqqlz4yh.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions index.html
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>
1 change: 1 addition & 0 deletions js/color-thief.umd.js

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

Loading

0 comments on commit 772e924

Please sign in to comment.