File size: 10,647 Bytes
7f88dd7
b4d7fed
 
56afb5e
e08a64e
7022cc6
9365f85
e1165b4
6e911c2
9c951eb
2043290
9365f85
d1db311
c96caf0
 
 
9e24192
 
 
 
 
 
 
 
7022cc6
277878d
7022cc6
 
6580737
7022cc6
 
 
 
5e47d3b
9365f85
 
 
b639502
a111514
9365f85
c728d62
 
 
9365f85
ff8f589
89cbab2
ff8f589
 
 
 
 
3582ba1
89cbab2
f8de192
 
c96caf0
db94493
b81a2d5
5bdf543
8d5c6cf
9365f85
 
 
5cb509c
db94493
0e221eb
1c81419
a3b173a
 
96495cf
e70e151
 
7622d1e
0e221eb
9365f85
72640c1
 
cca509e
08fb439
432842f
72640c1
 
9c951eb
0e3908d
9c951eb
 
 
 
 
 
9bc8da2
8d5c6cf
5bdf543
 
8d5c6cf
72640c1
5bdf543
 
 
32c6768
 
5bdf543
1ee735f
 
bcc8c8c
5bdf543
 
b44437d
72640c1
96495cf
372e86a
8adb1e7
4c19d70
432842f
9e24192
 
 
 
 
 
 
 
e793092
7f88dd7
 
46fd8e8
34d9197
 
5224065
 
d1db311
9d5ac51
 
 
34d9197
 
d03cf41
9b0fc3d
 
e64eed5
9b0fc3d
 
5224065
9b0fc3d
 
 
 
 
 
 
 
 
 
 
 
 
929d706
968d89a
a928efe
6e911c2
929d706
6e911c2
 
a928efe
6e911c2
 
1f92ab0
 
 
e70e151
 
 
6e911c2
 
72640c1
 
 
 
 
 
6e911c2
 
72640c1
 
 
 
 
 
 
 
 
 
89cbab2
2043290
 
89cbab2
 
 
929d706
9d5ac51
ec4f60b
 
 
 
9d5ac51
929d706
e1165b4
 
508d3f7
 
 
9e24192
e90bb7a
 
 
cca509e
 
968d89a
e90bb7a
8d5c6cf
 
 
9365f85
1c52b79
929d706
cca509e
f8de192
 
e70e151
cca509e
968d89a
89cbab2
9d5ac51
1161227
9365f85
e70e151
 
e64eed5
e70e151
51ede94
 
5bdf543
51ede94
 
89cbab2
 
 
 
e64eed5
89cbab2
 
 
 
 
 
9365f85
e90bb7a
 
 
 
968d89a
e90bb7a
38722bf
eaaccb1
5bdf543
b44437d
9b0fc3d
 
e64eed5
 
9b0fc3d
9e24192
 
 
8c0fcd2
6e911c2
 
 
1161227
9b0fc3d
508d3f7
24ad4e3
929d706
89cbab2
e70e151
b44437d
9d5ac51
9e24192
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
import gradio as gr 
import yt_dlp
import os 
import json
from rembg import remove as rm
import cv2
import uuid
import moviepy
from moviepy.video.io.ffmpeg_tools import ffmpeg_extract_subclip
import moviepy.video.io.ImageSequenceClip
from moviepy.editor import *
uid=uuid.uuid4()
if not os.path.exists(f'{uid}'): os.makedirs(f'{uid}')
if not os.path.exists(f'{uid}-frames'): os.makedirs(f'{uid}-frames')
if not os.path.exists(f'{uid}-rembg'): os.makedirs(f'{uid}-rembg')

load_js = """
function(text_input, url_params) {
    console.log(text_input, url_params);
    const params = new URLSearchParams(window.location.search);
    url_params = Object.fromEntries(params);
    return [text_input, url_params]
}
"""
def rem_cv(inp):
    cap = cv2.VideoCapture(f'{inp}')
    kernel = cv2.getStructuringElement(cv2.MORPH_ELLIPSE,(3,3))
    fgbg = cv2.bgsegm.createBackgroundSubtractorGMG()
    while True:
        ret, frame = cap.read()
        fgmask = fgbg.apply(frame)
        fgmask = cv2.morphologyEx(fgmask, cv2.MORPH_OPEN, kernel)
        yield (fgmask)

def load_video(vid):
    new_video_in = str(vid)
    capture = cv2.VideoCapture(new_video_in)
    fps = capture.get(cv2.CAP_PROP_FPS)
    msc = capture.get(cv2.CAP_PROP_POS_MSEC)
    frame_count = int(capture.get(cv2.CAP_PROP_FRAME_COUNT))
    print (msc)
    msc = float(frame_count/fps)
    print (msc)
    capture.release()
    vid_t = round(msc)

    hours = int(vid_t/360)
    minutes = int(vid_t/60)-(hours*360)
    seconds = vid_t-(minutes*60)-(hours*360)
    
    
    vid_len = f'{hours}:{minutes}:{seconds}'
    
    #vid_len_up = gr.update(label = "End", value = f"{vid_len}", placeholder = "0:00:54")
    return frame_count, fps, vid_len

def capture_function(vid):
    new_video_in = str(f"{uid}-clip.mp4")
    capture = cv2.VideoCapture(new_video_in)
    frame_count = int(capture.get(cv2.CAP_PROP_FRAME_COUNT))
    fbox=[]
    cnt=0
    frame_count1= int(frame_count)
    for i in range(int(frame_count1)):
        capture.set(cv2.CAP_PROP_POS_FRAMES, i)
        ret, frame_f = capture.read(i)
        #frame_ff = cv2.cvtColor(frame_f, cv2.COLOR_BGR2RGB)
        cv2.imwrite(f'{uid}-frames/{i+1}.png',frame_f)
        fbox.append(f'{uid}-frames/{i+1}.png')
        frame_num=f'Working on {i+1} of {frame_count1}'
        
        yield fbox,fbox,frame_num
    #return fbox,fbox,frame_num
    yield (fbox,fbox,frame_num)

def im_2_vid(images,fps):
    #width, height = Image.open(images[0]).size
    this_im=cv2.imread(images[0])
    height=this_im.shape[0]
    width= this_im.shape[1]
    print (width,height)
    size = (width, height)
    movie_clip = moviepy.video.io.ImageSequenceClip.ImageSequenceClip(images, fps)
    movie_clip.write_videofile(f'{uid}-rembg/bg_removed-{uid}.mp4')    
    #codec = cv2.VideoWriter_fourcc(*'mp4v') #DIVX, DIVD
    #video = cv2.VideoWriter("tmp_vid.mp4", codec, fps, size)
    #for img in images:
    #        video.write(img)
    
    
    return (f'{uid}-rembg/bg_removed-{uid}.mp4', f'{uid}-rembg/bg_removed-{uid}.mp4')
def rem_bg(vid):
    new_video_in = str(vid)
    capture = cv2.VideoCapture(new_video_in)    
    frame_count = int(capture.get(cv2.CAP_PROP_FRAME_COUNT))
    fps = capture.get(cv2.CAP_PROP_FPS)
    fbox2=[]
    cnt=0
    frame_count1= int(frame_count)
    for i in range(int(frame_count1)-1):
        capture.set(cv2.CAP_PROP_POS_FRAMES, i)
        ret, frame_f = capture.read(i)
        #frame_ff = cv2.cvtColor(frame_f, cv2.COLOR_BGR2RGB)
        out = rm(frame_f)
        print (i)
        cv2.imwrite(f'{uid}-rembg/{i}.png',out)
        fbox2.append(f'{uid}-rembg/{i}.png')
        frame_num=f'Working on {i+1} of {frame_count1-1}'
        yield fbox2,frame_num,None
    frame_num=f'Done: {i+1} of {frame_count1}'
    out_vid,_file = im_2_vid(fbox2, fps)
    yield (fbox2,frame_num,out_vid)


def predict(text, url_params):
    mod_url=""
    mod=gr.HTML("")
    out = None
    valid=gr.update(visible=False)
    mod_url = url_params.get('url')
    print (mod_url)
    return ["" + text + "", mod_url]

def dl(inp):
    out = None
    out_file=[]
    try:
        inp_out=inp.replace("https://","")
        inp_out=inp_out.replace("/","_").replace(".","_").replace("=","_").replace("?","_")
        os.system(f'yt-dlp "{inp}" --trim-filenames 160 -o "{uid}/{inp_out}.mp4" -S res,mp4 --recode mp4')  
        out = f"{uid}/{inp_out}.mp4"
        capture = cv2.VideoCapture(out)
        fps = capture.get(cv2.CAP_PROP_FPS)
        capture.release()
    except Exception as e:
        out = None
    return out,out,out,out,fps
def dl_json(inp):
    out_json={}
    out_file=[]
    try:
        inp_out=inp.replace("https://","")
        inp_out=inp_out.replace("/","_").replace(".","_").replace("=","_").replace("?","_")
        os.system(f'yt-dlp "{inp}" --write-info-json --skip-download -o "{inp_out}"')  
        out_file.append(f"{inp_out}.info.json")
        out_json=f'{inp_out}.info.json'
        try:
            with open(f"{inp_out}.info.json", "r") as f:
                f_out = f.read()
            json_object = json.loads(f_out)
            out_json = json.dumps(json_object, indent=4)
        except Exception as e:
            print (e)
    except Exception as e:
        print (e)
    return out_json
def trim_vid(vid,start_time,end_time):
    print (vid)
    start_hr=float(start_time.split(":",2)[0])*360
    start_min=int(start_time.split(":",2)[1])*60
    start_sec=int(start_time.split(":",2)[2])
    end_hr=int(end_time.split(":",2)[0])*360
    end_min=int(end_time.split(":",2)[1])*60
    end_sec=float(end_time.split(":",2)[2])
    start=start_hr+start_min+start_sec
    end=end_hr+end_min+end_sec
    ffmpeg_extract_subclip(vid, start, end, targetname=f"{uid}-clip.mp4")
    out= f"{uid}-clip.mp4"
    capture = cv2.VideoCapture(out)    
    frame_count = int(capture.get(cv2.CAP_PROP_FRAME_COUNT))    
    capture.release()
    return out,out,frame_count
    
def other():    
    new_video_in = str(vid)
    capture = cv2.VideoCapture(new_video_in)    
    frame_count = int(capture.get(cv2.CAP_PROP_FRAME_COUNT))
    fps = capture.get(cv2.CAP_PROP_FPS)
    fbox3=[]
    frame_count1= int(frame_count)
    start = (int(fps*int(start_f)))
    capture.set(cv2.CAP_PROP_POS_FRAMES, i-1)
    for i in range(int(frame_count1)):
        capture.set(cv2.CAP_PROP_POS_FRAMES, i)
        ret, frame_f = capture.read(i)
        #frame_ff = cv2.cvtColor(frame_f, cv2.COLOR_BGR2RGB)
        out = rm(frame_f)
        print (i)
        cv2.imwrite(f'{uid}-rembg/{i}.png',out)
        fbox3.append(f'{uid}-rembg/{i}.png')
        frame_num=f'Working on {i+1} of {frame_count}'
        yield fbox2,frame_num,None    
def make_gif():
    
    clip = VideoFileClip(f"{uid}-clip.mp4")
    clip.write_gif(f"{uid}/clip_gif.gif") 
    out = f"{uid}/clip_gif.gif"
    
    return out,out
def update_speed(inp,clip_speed,fps):
    if "-split.mp4" in inp:
        out_inp = f'{inp.split("-split.mp4",1)[0]}-split.mp4'
    else:
        out_inp = f'{inp.split(".mp4",1)[0]}-split.mp4'
    mod_fps=float(fps)*float(clip_speed)
    clip = VideoFileClip(inp)
    #final = clip.fx(vfx.speedx, clip_speed)
    final = moviepy.video.fx.all.speedx(clip, factor=clip_speed)    
    final.write_videofile(f'{out_inp}', fps=mod_fps) 
    out = f'{out_inp}'
    return out,out 
with gr.Blocks() as app:
    with gr.Tab("Load"):
        with gr.Row():
            with gr.Column():
                inp_url = gr.Textbox()
                go_btn = gr.Button("Run")
                outp_vid=gr.Video(format="mp4")
            with gr.Column():
                with gr.Row():
                    frame_count=gr.Textbox(label="Frame Count",interactive = False)
                    fps=gr.Textbox(label="FPS",interactive = False)
                outp_file=gr.Files()
                clip_speed = gr.Slider(label="Speed", minimum=0.01, maximum=2, value=1, step=0.01)
                speed_btn = gr.Button("Update Speed")
                with gr.Row():
                    start_f = gr.Textbox(label = "Start", value = "0:00:00", placeholder = "0:00:23",interactive = True)
                    end_f = gr.Textbox(label = "End", value = "0:00:05", placeholder = "0:00:54",interactive = True)
                    trim_count = gr.Textbox(label="Trimmed Frames")
                trim_btn=gr.Button("Trim")
                out_trim=gr.Video(format="mp4")
                hid_box = gr.Textbox(visible=True)
                hid_fps = gr.Textbox(visible=True)

    with gr.Tab("Frames"):
        with gr.Row():
            frame_btn = gr.Button("Get Frames")
            frame_stat=gr.Textbox(label="Status")
            
        with gr.Row():
            with gr.Column():
                frame_gal = gr.Gallery(columns=6)
            with gr.Column():
                frame_file = gr.Files()
   
    with gr.Tab("GIF"):
        with gr.Row():
            gif_btn = gr.Button("Make GIF")
            gif_stat=gr.Textbox(label="Status")
            
        with gr.Row():
            with gr.Column():
                gif_show = gr.Video()
            with gr.Column():
                gif_file = gr.Files()                
        
    with gr.Tab("Rem BG"):
        with gr.Row():    
            with gr.Column():
                rem_btn=gr.Button()
                in_vid=gr.Video(format="mp4")
            with gr.Column():
                #rem_vid=gr.Video()
                frame_num=gr.Textbox(label="Progress")
                rem_vid=gr.Gallery(columns=6)
        rem_bg_vid=gr.Video()        
    with gr.Tab("Info"):
        with gr.Row():
            info_btn = gr.Button("Load")
            info_stat=gr.Textbox(label="Status")
        info_json = gr.JSON()    
    with gr.Row(visible=False):
        text_input=gr.Textbox()
        text_output=gr.Textbox()
        url_params=gr.JSON()

    def echo_fn(inp):
        return inp 
    #outp_vid.change(echo_fn,outp_vid,[out_trim])
    info_btn.click(dl_json,inp_url,info_json)
    speed_btn.click(update_speed,[hid_box,clip_speed,hid_fps],[outp_vid,hid_box])
    gif_btn.click(make_gif,None,[gif_show,gif_file])
    trim_btn.click(trim_vid,[hid_box,start_f,end_f],[out_trim,in_vid,trim_count])
    outp_vid.change(load_video,outp_vid,[frame_count,fps,end_f]).then(trim_vid,[hid_box,start_f,end_f],[out_trim,in_vid,trim_count])
    frame_btn.click(capture_function,[out_trim],[frame_gal,frame_file,frame_stat])
    rem_btn.click(rem_bg,[out_trim],[rem_vid,frame_num,rem_bg_vid])
    go_btn.click(dl,inp_url,[outp_vid,outp_file,out_trim,hid_box,hid_fps])
    app.load(fn=predict, inputs=[text_input,url_params], outputs=[text_output,text_input],_js=load_js)
app.launch()