AndreySokolov01 commited on
Commit
972598c
1 Parent(s): 44c4df8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -4
app.py CHANGED
@@ -47,10 +47,13 @@ iface = gr.Interface(
47
  ],
48
  outputs=gr.Files(label="Download Split Videos"),
49
  title="Video Splitter",
50
- description="Split your video file into multiple parts using different methods. "Free Split": Пользователь может указать список временных меток через запятую для разбиения видео на сегменты.
51
- "Average Split": Пользователь указывает количество частей, на которые нужно разделить видео, и каждый сегмент будет иметь одинаковую продолжительность.
52
- "Time Split": Пользователь указывает список временных меток через запятую для разбиения видео. Каждый сегмент будет начинаться с указанного времени.
53
- "Size Split": Пользователь указывает целевой размер сегмента в мегабайтах. Видео будет разделено на сегменты, каждый из которых будет иметь размер, близкий к указанному значению.",
 
 
 
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__":