Spaces:
Running
Running
harrytarlton
commited on
Commit
·
f177957
1
Parent(s):
c10d057
removed section headers
Browse files
README.md
CHANGED
|
@@ -1,15 +1,21 @@
|
|
| 1 |
---
|
| 2 |
-
title: Design
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
sdk: gradio
|
| 7 |
-
sdk_version:
|
| 8 |
app_file: app.py
|
| 9 |
pinned: false
|
| 10 |
-
hf_oauth: true
|
| 11 |
-
hf_oauth_scopes:
|
| 12 |
-
- inference-api
|
| 13 |
---
|
| 14 |
|
| 15 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
title: NAM Garden Design
|
| 3 |
+
emoji: 🎸
|
| 4 |
+
colorFrom: purple
|
| 5 |
+
colorTo: red
|
| 6 |
sdk: gradio
|
| 7 |
+
sdk_version: 4.44.0
|
| 8 |
app_file: app.py
|
| 9 |
pinned: false
|
|
|
|
|
|
|
|
|
|
| 10 |
---
|
| 11 |
|
| 12 |
+
# NAM Garden Audio Processor
|
| 13 |
+
|
| 14 |
+
A Neural Amp Modeler interface with dual file browsers and real-time waveform display.
|
| 15 |
+
|
| 16 |
+
## Features
|
| 17 |
+
- Input and processed file management
|
| 18 |
+
- Real-time waveform visualization
|
| 19 |
+
- Multiple amp profiles/IRs
|
| 20 |
+
- Audio processing controls (Input Gain, Output Gain, Mix)
|
| 21 |
+
- Batch save functionality
|
app.py
CHANGED
|
@@ -430,7 +430,6 @@ with gr.Blocks(css=custom_css, theme=gr.themes.Base()) as demo:
|
|
| 430 |
|
| 431 |
# Model Selection
|
| 432 |
with gr.Group(elem_classes="control-group"):
|
| 433 |
-
gr.Markdown("### Profile/IR")
|
| 434 |
model_dropdown = gr.Dropdown(
|
| 435 |
choices=[
|
| 436 |
"Marshall JCM800",
|
|
@@ -446,8 +445,6 @@ with gr.Blocks(css=custom_css, theme=gr.themes.Base()) as demo:
|
|
| 446 |
|
| 447 |
# Audio Controls
|
| 448 |
with gr.Group(elem_classes="control-group"):
|
| 449 |
-
gr.Markdown("### Audio Controls")
|
| 450 |
-
|
| 451 |
with gr.Row():
|
| 452 |
input_gain = gr.Slider(
|
| 453 |
minimum=-20,
|
|
@@ -473,7 +470,6 @@ with gr.Blocks(css=custom_css, theme=gr.themes.Base()) as demo:
|
|
| 473 |
|
| 474 |
# Waveform Display
|
| 475 |
with gr.Group(elem_classes="control-group"):
|
| 476 |
-
gr.Markdown("### Waveform")
|
| 477 |
gr.HTML("""
|
| 478 |
<div style='
|
| 479 |
height: 200px;
|
|
|
|
| 430 |
|
| 431 |
# Model Selection
|
| 432 |
with gr.Group(elem_classes="control-group"):
|
|
|
|
| 433 |
model_dropdown = gr.Dropdown(
|
| 434 |
choices=[
|
| 435 |
"Marshall JCM800",
|
|
|
|
| 445 |
|
| 446 |
# Audio Controls
|
| 447 |
with gr.Group(elem_classes="control-group"):
|
|
|
|
|
|
|
| 448 |
with gr.Row():
|
| 449 |
input_gain = gr.Slider(
|
| 450 |
minimum=-20,
|
|
|
|
| 470 |
|
| 471 |
# Waveform Display
|
| 472 |
with gr.Group(elem_classes="control-group"):
|
|
|
|
| 473 |
gr.HTML("""
|
| 474 |
<div style='
|
| 475 |
height: 200px;
|