aashwinik commited on
Commit
fd0b751
1 Parent(s): 86c36ee

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -13,7 +13,7 @@ if uploaded_file is not None:
13
 
14
  output=censor_face(tfile)
15
 
16
- video_file = open(uploaded_file, 'rb')
17
  video_bytes = video_file.read()
18
  st.video(video_bytes)
19
 
 
13
 
14
  output=censor_face(tfile)
15
 
16
+ video_file = open(tfile.name, 'rb')
17
  video_bytes = video_file.read()
18
  st.video(video_bytes)
19