Aman Verma commited on
Commit
52480d5
1 Parent(s): 39257b1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -176,13 +176,13 @@ def send_email(receiver_email, attachment_path):
176
  server.sendmail(sender_email, receiver_email, message.as_string())
177
 
178
  if __name__ == "__main__":
179
- st.title("Mashup Web Service")
180
- st.write("Enter the details below to create a mashup and receive it via email.")
181
 
182
  form = st.form(key='my_form')
183
 
184
- name = form.text_input(label='Enter singer name')
185
- output_file = form.text_input(label='Enter output file name')
186
  num_videos = form.number_input(label='Enter number of videos', min_value=1, step=1)
187
  cut_duration = form.number_input(label='Enter cut duration in seconds', min_value=1, step=1)
188
  email = form.text_input(label='Enter your email-id')
 
176
  server.sendmail(sender_email, receiver_email, message.as_string())
177
 
178
  if __name__ == "__main__":
179
+ st.title("Mashup Web Service by Aman Verma,TIET :)")
180
+ st.write("Enter the details below to create a mashup of songs and receive it via email.")
181
 
182
  form = st.form(key='my_form')
183
 
184
+ name = form.text_input(label='Enter singer name 🎤')
185
+ output_file = form.text_input(label='Enter output file name with .mp3 extension')
186
  num_videos = form.number_input(label='Enter number of videos', min_value=1, step=1)
187
  cut_duration = form.number_input(label='Enter cut duration in seconds', min_value=1, step=1)
188
  email = form.text_input(label='Enter your email-id')