Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
st.markdown("""
|
3 |
+
|
4 |
+
Create a song based on the markdown template below. Replace the lyrics and chords to complete the full song. Use these chords: [Bm,C#,D,E | Bm,D,E | Bm, C#, D, E and finally Bm, D, E, Bm, D, E outro. | Lyrics | Chord Progression |
|
5 |
+
| ------- | ---------------- |
|
6 |
+
| `There's a [Cπͺ] shock to your [Gπ¦] system` | C - G |
|
7 |
+
| `It's no [Amπ] accident` | Am |
|
8 |
+
| `You're [Fπ ] lost without a [Cπͺ] compass` | F - C |
|
9 |
+
| `In a [Gπ¦] world that's [Dπ¦] so demanding` | G - D |
|
10 |
+
ChatGPT
|
11 |
+
Sure, here's your song using the given chord progression. Please note that the symbols provided (like πͺ, π¦, π, π , π¦) are just placeholders and I'm replacing them with actual lyrics.
|
12 |
+
|
13 |
+
Lyrics Chord Progression
|
14 |
+
There's a [Bm] whisper in the [C#] shadows Bm - C#
|
15 |
+
It's no [D] mystery, not an [E] illusion D - E
|
16 |
+
You're [Bm] caught in the maze of [D] memories Bm - D
|
17 |
+
In a [E] world that's always [Bm] turning E - Bm
|
18 |
+
Lyrics Chord Progression
|
19 |
+
There's a [Bm] silence in the [C#] cosmos Bm - C#
|
20 |
+
Yet it [D] speaks louder than [E] words D - E
|
21 |
+
You're [Bm] navigating through the [D] noise Bm - D
|
22 |
+
In a [E] world that's always [Bm] yearning E - Bm
|
23 |
+
Lyrics Chord Progression
|
24 |
+
There's a [Bm] journey in your [C#] spirit Bm - C#
|
25 |
+
It's a [D] quest you're meant to [E] undertake D - E
|
26 |
+
You're [Bm] crossing over bridges [D] Bm - D
|
27 |
+
In a [E] world that's always [Bm] wide awake E - Bm
|
28 |
+
Outro:
|
29 |
+
|
30 |
+
Lyrics Chord Progression
|
31 |
+
And there's a [Bm] melody within you [D] Bm - D
|
32 |
+
It's an [E] anthem that's uniquely [Bm] yours E - Bm
|
33 |
+
Keep on [Bm] dreaming in this [D] grand illusion Bm - D
|
34 |
+
In this [E] world that's forever [Bm] yours E - Bm
|
35 |
+
And this [Bm] symphony will [D] play on Bm - D
|
36 |
+
In this [E] world that's forever [Bm] yours E - Bm
|
37 |
+
|
38 |
+
|
39 |
+
""")
|