emon-j commited on
Commit
f1d1566
1 Parent(s): 7805451

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -49,7 +49,7 @@ def main():
49
 
50
  with st.form("youtube_download_form"):
51
  video_url = st.text_input("Enter a YouTube video URL")
52
- mute_audio = st.checkbox("Mute Audio in Video", value=True)
53
  submit_button = st.form_submit_button(label="Download and Process YouTube Video")
54
 
55
  if submit_button and video_url:
@@ -59,7 +59,7 @@ def main():
59
 
60
  with st.form("file_upload_form"):
61
  uploaded_video_file = st.file_uploader("Or upload a video file", type=["mp4", "avi", "mov"])
62
- mute_audio = st.checkbox("Mute Audio in Uploaded Video", value=True)
63
  process_button = st.form_submit_button(label="Process Uploaded Video")
64
 
65
  if process_button and uploaded_video_file is not None:
 
49
 
50
  with st.form("youtube_download_form"):
51
  video_url = st.text_input("Enter a YouTube video URL")
52
+ mute_audio = st.checkbox("Mute Audio in Video", value=False)
53
  submit_button = st.form_submit_button(label="Download and Process YouTube Video")
54
 
55
  if submit_button and video_url:
 
59
 
60
  with st.form("file_upload_form"):
61
  uploaded_video_file = st.file_uploader("Or upload a video file", type=["mp4", "avi", "mov"])
62
+ mute_audio = st.checkbox("Mute Audio in Uploaded Video", value=False)
63
  process_button = st.form_submit_button(label="Process Uploaded Video")
64
 
65
  if process_button and uploaded_video_file is not None: