Subhraj07 commited on
Commit
6b4e793
·
1 Parent(s): f7c1917

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +16 -1
app.py CHANGED
@@ -9,12 +9,27 @@ import subprocess
9
  # os.system("conda install -c conda-forge ffmpeg libsndfile -y")
10
 
11
  st.set_page_config(
12
- page_title="Video Splitter",
13
  page_icon=None,
14
  layout="wide",
15
  initial_sidebar_state="auto",
16
  )
17
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  def run_shell_command(command):
19
  process = subprocess.Popen(
20
  command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True, shell=True
 
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. 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.
22
+
23
+ With Music Vocabulary Splitter, you can:
24
+ - Split and categorize words from lyrics or song descriptions.
25
+ - Generate insights into the frequency and distribution of words.
26
+ - Apply these insights to understand themes and patterns across your music collection.
27
+
28
+ Upload your music files and let's get started!
29
+ """)
30
+
31
+
32
+
33
  def run_shell_command(command):
34
  process = subprocess.Popen(
35
  command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True, shell=True