Spaces:
Sleeping
Sleeping
AndreySokolov01
commited on
Commit
•
972598c
1
Parent(s):
44c4df8
Update app.py
Browse files
app.py
CHANGED
@@ -47,10 +47,13 @@ iface = gr.Interface(
|
|
47 |
],
|
48 |
outputs=gr.Files(label="Download Split Videos"),
|
49 |
title="Video Splitter",
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
|
|
|
|
|
|
54 |
)
|
55 |
|
56 |
if __name__ == "__main__":
|
|
|
47 |
],
|
48 |
outputs=gr.Files(label="Download Split Videos"),
|
49 |
title="Video Splitter",
|
50 |
+
description="""
|
51 |
+
Split your video file into multiple parts using different methods:
|
52 |
+
1. Free Split: Specify a list of comma-separated time stamps to split the video into segments.
|
53 |
+
2. Average Split: Enter the number of parts to divide the video into, with each segment having equal duration.
|
54 |
+
3. Time Split: Provide a list of comma-separated time stamps to split the video, with each segment starting at the specified time.
|
55 |
+
4. Size Split: Enter the target size of each segment in megabytes. The video will be divided into segments with sizes close to the specified value.
|
56 |
+
""",
|
57 |
)
|
58 |
|
59 |
if __name__ == "__main__":
|