Spaces:
Running
Running
File size: 29,488 Bytes
0c87db7 |
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 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 |
import os
import time
import gradio as gr
import cv2
import pathlib
import shutil
import roop.globals
import roop.metadata
import roop.utilities as util
from roop.face_helper import extract_face_images
from roop.capturer import get_video_frame, get_video_frame_total, get_image_frame
restart_server = False
live_cam_active = False
RECENT_DIRECTORY_SOURCE = None
RECENT_DIRECTORY_TARGET = None
RECENT_DIRECTORY_OUTPUT = None
SELECTION_FACES_DATA = None
last_image = None
input_thumbs = []
target_thumbs = []
IS_INPUT = True
SELECTED_FACE_INDEX = 0
SELECTED_INPUT_FACE_INDEX = 0
SELECTED_TARGET_FACE_INDEX = 0
roop.globals.keep_fps = None
roop.globals.keep_frames = None
roop.globals.skip_audio = None
roop.globals.use_batch = None
input_faces = None
target_faces = None
face_selection = None
fake_cam_image = None
current_cam_image = None
cam_swapping = False
selected_preview_index = 0
def prepare_environment():
roop.globals.output_path = os.path.abspath(os.path.join(os.getcwd(), "output"))
os.makedirs(roop.globals.output_path, exist_ok=True)
os.environ["TEMP"] = os.environ["TMP"] = os.path.abspath(os.path.join(os.getcwd(), "temp"))
os.makedirs(os.environ["TEMP"], exist_ok=True)
os.environ["GRADIO_TEMP_DIR"] = os.environ["TEMP"]
def run():
from roop.core import suggest_execution_providers
global input_faces, target_faces, face_selection, fake_cam_image, restart_server, live_cam_active, on_settings_changed
prepare_environment()
available_themes = ["Default", "gradio/glass", "gradio/monochrome", "gradio/seafoam", "gradio/soft", "gstaff/xkcd", "freddyaboulton/dracula_revamped", "ysharma/steampunk"]
image_formats = ['jpg','png', 'webp']
video_formats = ['avi','mkv', 'mp4', 'webm']
video_codecs = ['libx264', 'libx265', 'libvpx-vp9', 'h264_nvenc', 'hevc_nvenc']
providerlist = suggest_execution_providers()
server_name = roop.globals.CFG.server_name
if server_name is None or len(server_name) < 1:
server_name = None
server_port = roop.globals.CFG.server_port
if server_port <= 0:
server_port = None
settings_controls = []
live_cam_active = False
run_server = True
while run_server:
with gr.Blocks(title=f'{roop.metadata.name} {roop.metadata.version}', theme=roop.globals.CFG.selected_theme, css="span {color: var(--block-info-text-color)}") as ui:
with gr.Row(variant='panel'):
gr.Markdown(f"### [{roop.metadata.name} {roop.metadata.version}](https://github.com/C0untFloyd/roop-unleashed)")
gr.HTML(util.create_version_html(), elem_id="versions")
with gr.Tab("Face Swap"):
with gr.Row():
with gr.Column():
input_faces = gr.Gallery(label="Input faces", allow_preview=True, preview=True, height=128, object_fit="scale-down")
with gr.Row():
bt_remove_selected_input_face = gr.Button("Remove selected")
bt_clear_input_faces = gr.Button("Clear all", variant='stop')
bt_srcimg = gr.Image(label='Source Face Image', type='filepath', tool=None)
with gr.Column():
target_faces = gr.Gallery(label="Target faces", allow_preview=True, preview=True, height=128, object_fit="scale-down")
with gr.Row():
bt_remove_selected_target_face = gr.Button("Remove selected")
bt_destfiles = gr.Files(label='Target File(s)', file_count="multiple", elem_id='filelist')
with gr.Row():
with gr.Column(visible=False) as dynamic_face_selection:
face_selection = gr.Gallery(label="Detected faces", allow_preview=True, preview=True, height=256, object_fit="scale-down")
with gr.Row():
bt_faceselect = gr.Button("Use selected face")
bt_cancelfaceselect = gr.Button("Cancel")
with gr.Row():
with gr.Column():
selected_face_detection = gr.Dropdown(["First found", "All faces", "Selected face", "All female", "All male"], value="First found", label="Select face swapping method")
max_face_distance = gr.Slider(0.01, 1.0, value=0.65, label="Max Face Similarity Threshold")
with gr.Column():
roop.globals.keep_fps = gr.Checkbox(label="Keep FPS", value=True)
roop.globals.keep_frames = gr.Checkbox(label="Keep Frames", value=False)
roop.globals.skip_audio = gr.Checkbox(label="Skip audio", value=False)
with gr.Row():
with gr.Column():
selected_enhancer = gr.Dropdown(["None", "Codeformer", "DMDNet", "GFPGAN"], value="None", label="Select post-processing")
with gr.Accordion(label="Masking", open=True):
chk_useclip = gr.Checkbox(label="Use Text to Clip Masking", value=False)
clip_text = gr.Textbox(label="List of objects to mask and restore back on fake image", placeholder="hands,hair")
with gr.Column():
blend_ratio = gr.Slider(0.0, 1.0, value=0.65, label="Original/Enhanced image blend ratio")
with gr.Row(variant='panel'):
with gr.Column():
bt_start = gr.Button("Start", variant='primary')
with gr.Column():
gr.Markdown(' ')
with gr.Column():
fake_preview = gr.Checkbox(label="Face swap frames", value=False)
with gr.Column():
bt_refresh_preview = gr.Button("Refresh", variant='secondary')
with gr.Row(variant='panel'):
with gr.Column():
with gr.Accordion(label="Results", open=True):
resultfiles = gr.Files(label='Processed File(s)', interactive=False)
resultimage = gr.Image(type='filepath', interactive=False)
with gr.Column():
with gr.Accordion(label="Preview Original/Fake Frame", open=True):
previewimage = gr.Image(label="Preview Image", interactive=False)
with gr.Column():
preview_frame_num = gr.Slider(0, 0, value=0, label="Frame Number", step=1.0)
bt_use_face_from_preview = gr.Button("Use Face from this Frame", variant='primary')
with gr.Tab("Live Cam"):
cam_toggle = gr.Checkbox(label='Activate', value=live_cam_active)
if live_cam_active:
with gr.Row():
with gr.Column():
cam = gr.Webcam(label='Camera', source='webcam', interactive=True, streaming=False)
with gr.Column():
fake_cam_image = gr.Image(label='Fake Camera Output', interactive=False)
with gr.Tab("Extras"):
with gr.Row():
files_to_process = gr.Files(label='File(s) to process', file_count="multiple")
with gr.Row(variant='panel'):
with gr.Accordion(label="Post process", open=False):
with gr.Column():
selected_post_enhancer = gr.Dropdown(["None", "Codeformer", "GFPGAN"], value="None", label="Select post-processing")
with gr.Column():
gr.Button("Start").click(fn=lambda: gr.Info('Not yet implemented...'))
with gr.Row(variant='panel'):
with gr.Accordion(label="Video/GIF", open=False):
with gr.Row(variant='panel'):
with gr.Column():
gr.Markdown("""
# Cut video
Be aware that this means re-encoding the video which might take a longer time.
Encoding uses your configuration from the Settings Tab.
""")
with gr.Column():
cut_start_time = gr.Slider(0, 100000, value=0, label="Start Frame", step=1.0, interactive=True)
with gr.Column():
cut_end_time = gr.Slider(1, 100000, value=1, label="End Frame", step=1.0, interactive=True)
with gr.Column():
start_cut_video = gr.Button("Start")
# with gr.Row(variant='panel'):
# with gr.Column():
# gr.Markdown("""
# # Join videos
# This also re-encodes the videos like cutting above.
# """)
# with gr.Column():
# start_join_videos = gr.Button("Start")
with gr.Row(variant='panel'):
gr.Markdown("Extract frames from video")
start_extract_frames = gr.Button("Start")
with gr.Row(variant='panel'):
gr.Markdown("Create video from image files")
gr.Button("Start").click(fn=lambda: gr.Info('Not yet implemented...'))
with gr.Row(variant='panel'):
gr.Markdown("Create GIF from video")
start_create_gif = gr.Button("Create GIF")
with gr.Row():
extra_files_output = gr.Files(label='Resulting output files', file_count="multiple")
with gr.Tab("Settings"):
with gr.Row():
with gr.Column():
themes = gr.Dropdown(available_themes, label="Theme", info="Change needs complete restart", value=roop.globals.CFG.selected_theme)
with gr.Column():
settings_controls.append(gr.Checkbox(label="Public Server", value=roop.globals.CFG.server_share, elem_id='server_share', interactive=True))
settings_controls.append(gr.Checkbox(label='Clear output folder before each run', value=roop.globals.CFG.clear_output, elem_id='clear_output', interactive=True))
with gr.Column():
input_server_name = gr.Textbox(label="Server Name", lines=1, info="Leave blank to run locally", value=roop.globals.CFG.server_name)
with gr.Column():
input_server_port = gr.Number(label="Server Port", precision=0, info="Leave at 0 to use default", value=roop.globals.CFG.server_port)
with gr.Row():
with gr.Column():
max_threads = gr.Slider(1, 64, value=roop.globals.CFG.max_threads, label="Max. Number of Threads", info='default: 8', step=1.0, interactive=True)
settings_controls.append(gr.Dropdown(image_formats, label="Image Output Format", info='default: png', value=roop.globals.CFG.output_image_format, elem_id='output_image_format', interactive=True))
button_clean_temp = gr.Button("Clean temp folder")
with gr.Column():
settings_controls.append(gr.Dropdown(providerlist, label="Provider", value=roop.globals.CFG.provider, elem_id='provider', interactive=True))
settings_controls.append(gr.Dropdown(video_formats, label="Video Output Format", info='default: mp4', value=roop.globals.CFG.output_video_format, elem_id='output_video_format', interactive=True))
button_apply_settings = gr.Button("Apply Settings")
with gr.Column():
settings_controls.append(gr.Dropdown(video_codecs, label="Video Codec", info='default: libx264', value=roop.globals.CFG.output_video_codec, elem_id='output_video_codec', interactive=True))
video_quality = gr.Slider(0, 100, value=roop.globals.CFG.video_quality, label="Video Quality (crf)", info='default: 14', step=1.0, interactive=True)
with gr.Column():
button_apply_restart = gr.Button("Restart Server", variant='primary')
input_faces.select(on_select_input_face, None, None)
bt_remove_selected_input_face.click(fn=remove_selected_input_face, outputs=[input_faces])
bt_srcimg.change(fn=on_srcimg_changed, show_progress='full', inputs=bt_srcimg, outputs=[dynamic_face_selection, face_selection, input_faces])
target_faces.select(on_select_target_face, None, None)
bt_remove_selected_target_face.click(fn=remove_selected_target_face, outputs=[target_faces])
bt_destfiles.select(fn=on_destfiles_selected, inputs=[bt_destfiles], outputs=[previewimage, preview_frame_num])
bt_destfiles.clear(fn=on_clear_destfiles, outputs=[target_faces])
resultfiles.select(fn=on_resultfiles_selected, inputs=[resultfiles], outputs=[resultimage])
face_selection.select(on_select_face, None, None)
bt_faceselect.click(fn=on_selected_face, outputs=[dynamic_face_selection, face_selection, input_faces, target_faces])
bt_clear_input_faces.click(fn=on_clear_input_faces, outputs=[input_faces])
bt_start.click(fn=start_swap,
inputs=[selected_enhancer, selected_face_detection, roop.globals.keep_fps, roop.globals.keep_frames,
roop.globals.skip_audio, max_face_distance, blend_ratio, bt_destfiles, chk_useclip, clip_text],
outputs=[resultfiles, resultimage])
previewinputs = [preview_frame_num, bt_destfiles, fake_preview, selected_enhancer, selected_face_detection,
max_face_distance, blend_ratio, bt_destfiles, chk_useclip, clip_text]
bt_refresh_preview.click(fn=on_preview_frame_changed, inputs=previewinputs, outputs=[previewimage])
fake_preview.change(fn=on_preview_frame_changed, inputs=previewinputs, outputs=[previewimage])
preview_frame_num.change(fn=on_preview_frame_changed, inputs=previewinputs, outputs=[previewimage], show_progress='hidden')
bt_use_face_from_preview.click(fn=on_use_face_from_selected, show_progress='full', inputs=[bt_destfiles, preview_frame_num], outputs=[dynamic_face_selection, face_selection, target_faces])
# Live Cam
cam_toggle.change(fn=on_cam_toggle, inputs=[cam_toggle])
if live_cam_active:
cam.stream(on_stream_swap_cam, inputs=[cam, selected_enhancer, blend_ratio], outputs=[fake_cam_image], show_progress="hidden")
# Extras
start_cut_video.click(fn=on_cut_video, inputs=[files_to_process, cut_start_time, cut_end_time], outputs=[extra_files_output])
# start_join_videos.click(fn=on_join_videos, inputs=[files_to_process], outputs=[extra_files_output])
start_extract_frames.click(fn=on_extract_frames, inputs=[files_to_process], outputs=[extra_files_output])
start_create_gif.click(fn=on_create_gif, inputs=[files_to_process], outputs=[extra_files_output])
# Settings
for s in settings_controls:
s.select(fn=on_settings_changed)
max_threads.input(fn=lambda a,b='max_threads':on_settings_changed_misc(a,b), inputs=[max_threads])
video_quality.input(fn=lambda a,b='video_quality':on_settings_changed_misc(a,b), inputs=[video_quality])
button_clean_temp.click(fn=clean_temp, outputs=[bt_srcimg, input_faces, target_faces, bt_destfiles])
button_apply_settings.click(apply_settings, inputs=[themes, input_server_name, input_server_port])
button_apply_restart.click(restart)
restart_server = False
try:
ui.queue().launch(inbrowser=True, server_name=server_name, server_port=server_port, prevent_thread_lock=True, show_error=True)
except:
restart_server = True
run_server = False
try:
while restart_server == False:
time.sleep(5.0)
except (KeyboardInterrupt, OSError):
print("Keyboard interruption in main thread... closing server.")
run_server = False
ui.close()
def on_settings_changed_misc(new_val, attribname):
if hasattr(roop.globals.CFG, attribname):
setattr(roop.globals.CFG, attribname, new_val)
else:
print("Didn't find attrib!")
def on_settings_changed(evt: gr.SelectData):
attribname = evt.target.elem_id
if isinstance(evt.target, gr.Checkbox):
if hasattr(roop.globals.CFG, attribname):
setattr(roop.globals.CFG, attribname, evt.selected)
return
elif isinstance(evt.target, gr.Dropdown):
if hasattr(roop.globals.CFG, attribname):
setattr(roop.globals.CFG, attribname, evt.value)
return
raise gr.Error(f'Unhandled Setting for {evt.target}')
def on_srcimg_changed(imgsrc, progress=gr.Progress()):
global RECENT_DIRECTORY_SOURCE, SELECTION_FACES_DATA, IS_INPUT, input_faces, face_selection, input_thumbs, last_image
IS_INPUT = True
if imgsrc == None or last_image == imgsrc:
return gr.Column.update(visible=False), None, input_thumbs
last_image = imgsrc
progress(0, desc="Retrieving faces from image", )
source_path = imgsrc
thumbs = []
if util.is_image(source_path):
roop.globals.source_path = source_path
RECENT_DIRECTORY_SOURCE = os.path.dirname(roop.globals.source_path)
SELECTION_FACES_DATA = extract_face_images(roop.globals.source_path, (False, 0))
progress(0.5, desc="Retrieving faces from image")
for f in SELECTION_FACES_DATA:
image = convert_to_gradio(f[1])
thumbs.append(image)
progress(1.0, desc="Retrieving faces from image")
if len(thumbs) < 1:
raise gr.Error('No faces detected!')
if len(thumbs) == 1:
roop.globals.SELECTED_FACE_DATA_INPUT = SELECTION_FACES_DATA[0][0]
input_thumbs.append(thumbs[0])
return gr.Column.update(visible=False), None, input_thumbs
return gr.Column.update(visible=True), thumbs, gr.Gallery.update(visible=True)
def on_select_input_face(evt: gr.SelectData):
global SELECTED_INPUT_FACE_INDEX
SELECTED_INPUT_FACE_INDEX = evt.index
def remove_selected_input_face():
global input_thumbs, SELECTED_INPUT_FACE_INDEX
if len(input_thumbs) > SELECTED_INPUT_FACE_INDEX:
f = input_thumbs.pop(SELECTED_INPUT_FACE_INDEX)
del f
return input_thumbs
def on_select_target_face(evt: gr.SelectData):
global SELECTED_TARGET_FACE_INDEX
SELECTED_TARGET_FACE_INDEX = evt.index
def remove_selected_target_face():
global target_thumbs, SELECTED_TARGET_FACE_INDEX
if len(target_thumbs) > SELECTED_TARGET_FACE_INDEX:
f = target_thumbs.pop(SELECTED_TARGET_FACE_INDEX)
del f
return target_thumbs
def on_use_face_from_selected(files, frame_num):
global IS_INPUT, SELECTION_FACES_DATA
IS_INPUT = False
thumbs = []
roop.globals.target_path = files[selected_preview_index].name
if util.is_image(roop.globals.target_path) and not roop.globals.target_path.lower().endswith(('gif')):
SELECTION_FACES_DATA = extract_face_images(roop.globals.target_path, (False, 0))
if len(SELECTION_FACES_DATA) > 0:
for f in SELECTION_FACES_DATA:
image = convert_to_gradio(f[1])
thumbs.append(image)
else:
gr.Info('No faces detected!')
roop.globals.target_path = None
elif util.is_video(roop.globals.target_path) or roop.globals.target_path.lower().endswith(('gif')):
selected_frame = frame_num
SELECTION_FACES_DATA = extract_face_images(roop.globals.target_path, (True, selected_frame))
if len(SELECTION_FACES_DATA) > 0:
for f in SELECTION_FACES_DATA:
image = convert_to_gradio(f[1])
thumbs.append(image)
else:
gr.Info('No faces detected!')
roop.globals.target_path = None
if len(thumbs) == 1:
roop.globals.SELECTED_FACE_DATA_OUTPUT = SELECTION_FACES_DATA[0][0]
target_thumbs.append(thumbs[0])
return gr.Row.update(visible=False), None, target_thumbs
return gr.Row.update(visible=True), thumbs, gr.Gallery.update(visible=True)
def on_select_face(evt: gr.SelectData): # SelectData is a subclass of EventData
global SELECTED_FACE_INDEX
SELECTED_FACE_INDEX = evt.index
def on_selected_face():
global IS_INPUT, SELECTED_FACE_INDEX, SELECTION_FACES_DATA, input_thumbs, target_thumbs
fd = SELECTION_FACES_DATA[SELECTED_FACE_INDEX]
image = convert_to_gradio(fd[1])
if IS_INPUT:
roop.globals.SELECTED_FACE_DATA_INPUT = fd[0]
input_thumbs.append(image)
return gr.Column.update(visible=False), None, input_thumbs, gr.Gallery.update(visible=True)
else:
roop.globals.SELECTED_FACE_DATA_OUTPUT = fd[0]
target_thumbs.append(image)
return gr.Column.update(visible=False), None, gr.Gallery.update(visible=True), target_thumbs
# bt_faceselect.click(fn=on_selected_face, outputs=[dynamic_face_selection, face_selection, input_faces, target_faces])
def on_preview_frame_changed(frame_num, files, fake_preview, enhancer, detection, face_distance, blend_ratio, target_files, use_clip, clip_text):
from roop.core import live_swap
filename = files[selected_preview_index].name
if util.is_video(filename) or filename.lower().endswith('gif'):
current_frame = get_video_frame(filename, frame_num)
else:
current_frame = get_image_frame(filename)
if current_frame is None:
return None
if not fake_preview or roop.globals.SELECTED_FACE_DATA_INPUT is None:
return convert_to_gradio(current_frame)
roop.globals.face_swap_mode = translate_swap_mode(detection)
roop.globals.selected_enhancer = enhancer
roop.globals.distance_threshold = face_distance
roop.globals.blend_ratio = blend_ratio
if use_clip and clip_text is None or len(clip_text) < 1:
use_clip = False
roop.globals.execution_threads = roop.globals.CFG.max_threads
current_frame = live_swap(current_frame, roop.globals.face_swap_mode, use_clip, clip_text)
if current_frame is None:
return None
return convert_to_gradio(current_frame)
def on_clear_input_faces():
global input_thumbs
input_thumbs = []
roop.globals.SELECTED_FACE_DATA_INPUT = None
return input_thumbs
def on_clear_destfiles():
global target_thumbs
roop.globals.SELECTED_FACE_DATA_OUTPUT = None
target_thumbs = []
return target_thumbs
def translate_swap_mode(dropdown_text):
if dropdown_text == "Selected face":
return "selected"
elif dropdown_text == "First found":
return "first"
elif dropdown_text == "All female":
return "all_female"
elif dropdown_text == "All male":
return "all_male"
return "all"
def start_swap(enhancer, detection, keep_fps, keep_frames, skip_audio, face_distance, blend_ratio, target_files, use_clip, clip_text):
from roop.core import batch_process
if target_files is None or len(target_files) <= 0:
return None, None
if roop.globals.CFG.clear_output:
shutil.rmtree(roop.globals.output_path)
prepare_environment()
roop.globals.selected_enhancer = enhancer
roop.globals.target_path = None
roop.globals.distance_threshold = face_distance
roop.globals.blend_ratio = blend_ratio
roop.globals.keep_fps = keep_fps
roop.globals.keep_frames = keep_frames
roop.globals.skip_audio = skip_audio
roop.globals.face_swap_mode = translate_swap_mode(detection)
if use_clip and clip_text is None or len(clip_text) < 1:
use_clip = False
if roop.globals.face_swap_mode == 'selected':
if roop.globals.SELECTED_FACE_DATA_OUTPUT is None or len(roop.globals.SELECTED_FACE_DATA_OUTPUT) < 1:
gr.Error('No Target Face selected!')
return None, None
roop.globals.execution_threads = roop.globals.CFG.max_threads
roop.globals.video_encoder = roop.globals.CFG.output_video_codec
roop.globals.video_quality = roop.globals.CFG.video_quality
batch_process([file.name for file in target_files], use_clip, clip_text)
outdir = pathlib.Path(roop.globals.output_path)
outfiles = [item for item in outdir.iterdir() if item.is_file()]
if len(outfiles) > 0:
return outfiles, outfiles[0]
return None, None
def on_destfiles_selected(evt: gr.SelectData, target_files):
global selected_preview_index
selected_preview_index = evt.index
filename = target_files[selected_preview_index].name
if util.is_video(filename) or filename.lower().endswith('gif'):
current_frame = get_video_frame(filename, 0)
total_frames = get_video_frame_total(filename)
else:
current_frame = get_image_frame(filename)
total_frames = 0
current_frame = convert_to_gradio(current_frame)
return current_frame, gr.Slider.update(value=0, maximum=total_frames)
def on_resultfiles_selected(evt: gr.SelectData, files):
selected_index = evt.index
filename = files[selected_index].name
if util.is_video(filename) or filename.lower().endswith('gif'):
current_frame = get_video_frame(filename, 0)
else:
current_frame = get_image_frame(filename)
return convert_to_gradio(current_frame)
def on_cam_toggle(state):
global live_cam_active, restart_server
live_cam_active = state
gr.Warning('Server will be restarted for this change!')
restart_server = True
def on_stream_swap_cam(camimage, enhancer, blend_ratio):
from roop.core import live_swap
global current_cam_image, cam_counter, cam_swapping, fake_cam_image
roop.globals.selected_enhancer = enhancer
roop.globals.blend_ratio = blend_ratio
if not cam_swapping and roop.globals.SELECTED_FACE_DATA_INPUT is not None:
cam_swapping = True
current_cam_image = live_swap(camimage, "all", False, None)
cam_swapping = False
return current_cam_image
def on_cut_video(files, cut_start_frame, cut_end_frame):
resultfiles = []
for tf in files:
f = tf.name
# destfile = get_destfilename_from_path(f, resolve_relative_path('./output'), '_cut')
destfile = util.get_destfilename_from_path(f, './output', '_cut')
util.cut_video(f, destfile, cut_start_frame, cut_end_frame)
if os.path.isfile(destfile):
resultfiles.append(destfile)
else:
gr.Error('Cutting video failed!')
return resultfiles
def on_join_videos(files):
filenames = []
for f in files:
filenames.append(f.name)
destfile = util.get_destfilename_from_path(filenames[0], './output', '_join')
util.join_videos(filenames, destfile)
resultfiles = []
if os.path.isfile(destfile):
resultfiles.append(destfile)
else:
gr.Error('Joining videos failed!')
return resultfiles
def on_extract_frames(files):
resultfiles = []
for tf in files:
f = tf.name
resfolder = util.extract_frames(f)
for file in os.listdir(resfolder):
outfile = os.path.join(resfolder, file)
if os.path.isfile(outfile):
resultfiles.append(outfile)
return resultfiles
def on_create_gif(files):
for tf in files:
f = tf.name
gifname = util.get_destfilename_from_path(f, './output', '.gif')
util.create_gif_from_video(f, gifname)
return gifname
def clean_temp():
global input_thumbs, target_thumbs
shutil.rmtree(os.environ["TEMP"])
prepare_environment()
input_thumbs = []
roop.globals.SELECTED_FACE_DATA_INPUT = None
roop.globals.SELECTED_FACE_DATA_OUTPUT = None
target_thumbs = []
gr.Info('Temp Files removed')
return None,None,None,None
def apply_settings(themes, input_server_name, input_server_port):
roop.globals.CFG.selected_theme = themes
roop.globals.CFG.server_name = input_server_name
roop.globals.CFG.server_port = input_server_port
roop.globals.CFG.save()
gr.Info('Settings saved')
def restart():
global restart_server
restart_server = True
# Gradio wants Images in RGB
def convert_to_gradio(image):
if image is None:
return None
return cv2.cvtColor(image, cv2.COLOR_BGR2RGB)
|