Subhraj07 commited on
Commit
cf83079
·
1 Parent(s): 115f079

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +16 -15
app.py CHANGED
@@ -8,26 +8,27 @@ import subprocess
8
 
9
  # os.system("conda install -c conda-forge ffmpeg libsndfile -y")
10
 
11
- st.set_page_config(
12
- page_title="Music Vocabulary Splitter",
13
- page_icon=None,
14
- layout="wide",
15
- initial_sidebar_state="auto",
16
- )
17
 
18
- st.header('Welcome to Music Vocabulary Splitter')
19
 
20
- st.text("""
21
- This application is designed to help you analyze and split the vocabulary associated with your music files.
22
- Whether you're looking to categorize lyrics, analyze word usage, or better understand the thematic elements of your songs, Music Vocabulary Splitter is your tool.
 
 
 
23
 
24
  With Music Vocabulary Splitter, you can:
25
- - Split and categorize words from lyrics or song descriptions.
26
- - Generate insights into the frequency and distribution of words.
27
- - Apply these insights to understand themes and patterns across your music collection.
 
 
 
28
 
29
- Upload your audio/video files and let's get started!
30
- """)
31
 
32
 
33
 
 
8
 
9
  # os.system("conda install -c conda-forge ffmpeg libsndfile -y")
10
 
11
+ st.set_page_config(page_title='Music Vocabulary Splitter', layout='wide', initial_sidebar_state='collapsed')
 
 
 
 
 
12
 
13
+ st.title('Music Vocabulary Splitter')
14
 
15
+ # Adding space for aesthetics
16
+ st.markdown('<br>', unsafe_allow_html=True)
17
+
18
+ st.header('Welcome to the Music Vocabulary Splitter :musical_note:')
19
+ st.markdown("""
20
+ This application is designed to help you **analyze and split the vocabulary** associated with your music files. Whether you're looking to categorize lyrics, analyze word usage, or better understand the thematic elements of your songs, **Music Vocabulary Splitter** is your go-to tool.
21
 
22
  With Music Vocabulary Splitter, you can:
23
+ - :musical_note: Split and categorize words from lyrics or song descriptions.
24
+ - :bar_chart: Generate insights into the frequency and distribution of words.
25
+ - :mag: Apply these insights to understand themes and patterns across your music collection.
26
+
27
+ :microphone: Upload your music files and let's get started!
28
+ """, unsafe_allow_html=True)
29
 
30
+ # Adding space for aesthetics
31
+ st.markdown('<br>', unsafe_allow_html=True)
32
 
33
 
34