Omnibus commited on
Commit
f63a6a8
·
1 Parent(s): 37cf082

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +32 -25
app.py CHANGED
@@ -13,6 +13,7 @@ uid=uuid.uuid4()
13
  if not os.path.exists(f'{uid}'): os.makedirs(f'{uid}')
14
  if not os.path.exists(f'{uid}-frames'): os.makedirs(f'{uid}-frames')
15
  if not os.path.exists(f'{uid}-rembg'): os.makedirs(f'{uid}-rembg')
 
16
 
17
  load_js = """
18
  function(text_input, url_params) {
@@ -223,7 +224,36 @@ def update_speed(inp,clip_speed,fps):
223
  final.write_videofile(f'{out_inp}', fps=mod_fps)
224
  out = f'{out_inp}'
225
  return out,out
226
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
227
  with gr.Blocks() as app:
228
  with gr.Tab("Load"):
229
  with gr.Row():
@@ -298,30 +328,7 @@ with gr.Blocks() as app:
298
  text_output=gr.Textbox()
299
  url_params=gr.JSON()
300
 
301
- def echo_fn(inp):
302
- return inp
303
- def check_load(inp_url,outp_vid,hid_box,start_f,end_f):
304
- if outp_vid == None and inp_url !="":
305
- out_trim,in_vid,trim_count=trim_vid(hid_box,start_f,end_f)
306
- elif outp_vid !=None and inp_url == "" and hid_box =="":
307
- out_trim = None
308
- in_vid=outp_vid
309
- trim_count = ""
310
- elif outp_vid !=None and inp_url == "" and hid_box !="":
311
- out_trim,in_vid,trim_count=trim_vid(hid_box,start_f,end_f)
312
- return out_trim,in_vid,trim_count
313
- #outp_vid.change(echo_fn,outp_vid,[out_trim])
314
- esr = gr.Interface.load("spaces/Omnibus/Real-ESRGAN-mod")
315
- def process_image_1(image):
316
- out = esr(img=image, model_name="realesr-general-x4v3", denoise_strength=0.5, face_enhance=False, outscale=2)
317
- print (out)
318
- out = Image.open(out)
319
- return out
320
- def improve_quality():
321
- clip1 = VideoFileClip(f"{uid}-clip.mp4")
322
- clip = clip1.fl_image(process_image_1)
323
- clip.write_videofile(f"{uid}-clip-high.mp4", audio=True)
324
- return f"{uid}-clip-high.mp4"
325
 
326
  impro_btn.click(improve_quality,None,clip_out)
327
 
 
13
  if not os.path.exists(f'{uid}'): os.makedirs(f'{uid}')
14
  if not os.path.exists(f'{uid}-frames'): os.makedirs(f'{uid}-frames')
15
  if not os.path.exists(f'{uid}-rembg'): os.makedirs(f'{uid}-rembg')
16
+ esr = gr.Interface.load("spaces/Omnibus/Real-ESRGAN-mod")
17
 
18
  load_js = """
19
  function(text_input, url_params) {
 
224
  final.write_videofile(f'{out_inp}', fps=mod_fps)
225
  out = f'{out_inp}'
226
  return out,out
227
+
228
+ def echo_fn(inp):
229
+ return inp
230
+ def check_load(inp_url,outp_vid,hid_box,start_f,end_f):
231
+ if outp_vid == None and inp_url !="":
232
+ out_trim,in_vid,trim_count=trim_vid(hid_box,start_f,end_f)
233
+ elif outp_vid !=None and inp_url == "" and hid_box =="":
234
+ out_trim = None
235
+ in_vid=outp_vid
236
+ trim_count = ""
237
+ elif outp_vid !=None and inp_url == "" and hid_box !="":
238
+ out_trim,in_vid,trim_count=trim_vid(hid_box,start_f,end_f)
239
+ return out_trim,in_vid,trim_count
240
+ #outp_vid.change(echo_fn,outp_vid,[out_trim])
241
+ def process_image_1(image):
242
+ out = esr(img=image, model_name="realesr-general-x4v3", denoise_strength=0.5, face_enhance=False, outscale=2)
243
+ print (out)
244
+ out = Image.open(out)
245
+ return out
246
+ def improve_quality():
247
+ clip1 = VideoFileClip(f"{uid}-clip.mp4")
248
+ clip = clip1.fl_image(process_image_1)
249
+ clip.write_videofile(f"{uid}-clip-high.mp4", audio=True)
250
+ return f"{uid}-clip-high.mp4"
251
+
252
+
253
+
254
+
255
+
256
+
257
  with gr.Blocks() as app:
258
  with gr.Tab("Load"):
259
  with gr.Row():
 
328
  text_output=gr.Textbox()
329
  url_params=gr.JSON()
330
 
331
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
332
 
333
  impro_btn.click(improve_quality,None,clip_out)
334