Spaces:
Paused
Paused
Commit ·
d04fc8f
1
Parent(s): 0d6e59e
Update app.py
Browse files
app.py
CHANGED
|
@@ -31,11 +31,11 @@ if selected:
|
|
| 31 |
video_file = cut_video(video_file, judul_video, start_time, end_time)
|
| 32 |
file_size = os.path.getsize(video_file)
|
| 33 |
session(video_info, video_file, cut)
|
| 34 |
-
st.
|
| 35 |
|
| 36 |
else:
|
| 37 |
if st.button(f"Download {selected}"):
|
| 38 |
video_file, judul_video, video_info = fungsi(video_link, resolution)
|
| 39 |
file_size = os.path.getsize(video_file)
|
| 40 |
session(video_info, video_file, cut)
|
| 41 |
-
st.
|
|
|
|
| 31 |
video_file = cut_video(video_file, judul_video, start_time, end_time)
|
| 32 |
file_size = os.path.getsize(video_file)
|
| 33 |
session(video_info, video_file, cut)
|
| 34 |
+
st.text_input(f"Video '{judul_video}' setelah diproses:", convert_size(file_size))
|
| 35 |
|
| 36 |
else:
|
| 37 |
if st.button(f"Download {selected}"):
|
| 38 |
video_file, judul_video, video_info = fungsi(video_link, resolution)
|
| 39 |
file_size = os.path.getsize(video_file)
|
| 40 |
session(video_info, video_file, cut)
|
| 41 |
+
st.text_input(f"Video '{judul_video}' setelah diproses:", convert_size(file_size))
|