Develop (#73)
* Cosmetic changes * Cosmetic changes * Run single warm up for the benchmark suite * Use latest version of Gradio * More testing * Introduce basic installer * Fix typo * Move more to installer file * Fix the installer with the uninstall all trick * Adjust wording * Fix coreml in installer * Allow Pyhton 3.9 * Add VENV to installer * Just some cosmetics * Just some cosmetics * Dedicated headless mode, Refine API of UI layouts * Use --headless for pytest * Fix testing for Windows * Normalize output path that lacks extension * Fix CI for Windows * Fix CI for Windows * UI to change output path * Add conda support for the installer * Improve installer quite a bit * Drop conda support * Install community wheels for coreml silicon * Improve output video component * Fix silicon wheel downloading * Remove venv from installer as we cannot activate via subprocess * Use join to create wheel name * Refine the output path normalization * Refine the output path normalization * Introduce ProcessMode and rename some methods * Introduce ProcessMode and rename some methods * Basic webcam integration and open_ffmpeg() * Basic webcam integration part2 * Benchmark resolutions now selectable * Rename benchmark resolution back to benchmark runs * Fix repeating output path in UI * Keep output_path untouched if not resolvable * Add more cases to normalize output path * None for those tests that don't take source path into account * Finish basic webcam integration, UI layout now with custom run() * Fix CI and hide link in webcam UI * Cosmetics on webcam UI * Move get_device to utilities * Fix CI * Introduce output-image-quality, Show and hide UI according to target media type * Benchmark with partial result updates * fix: trim frame sliders not appearing after draggin video * fix: output and temp frame setting inputs not appearing * Fix: set increased update delay to 250ms to let Gradio update conditional inputs properly * Reverted .gitignore * Adjust timings * Remove timeout hacks and get fully event driven * Update dependencies * Update dependencies * Revert NSFW library, Conditional unset trim args * Face selector works better on preview slider release * Add limit resources to UI * Introduce vision.py for all CV2 operations, Rename some methods * Add restoring audio failed * Decouple updates for preview image and preview frame slider, Move reduce_preview_frame to vision * Refactor detect_fps based on JSON output * Only webcam when open * More conditions to vision.py * Add udp and v4l2 streaming to webcam UI * Detect v4l2 device to be used * Refactor code a bit * Use static max memory for UI * Fix CI * Looks stable to me * Update preview * Update preview --------- Co-authored-by: Sumit <vizsumit@gmail.com>
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
WORDING =\
|
||||
{
|
||||
'select_onnxruntime_install': 'Select the onnxruntime to be installed',
|
||||
'python_not_supported': 'Python version is not supported, upgrade to {version} or higher',
|
||||
'ffmpeg_not_installed': 'FFMpeg is not installed',
|
||||
'source_help': 'select a source image',
|
||||
@@ -21,21 +22,26 @@ WORDING =\
|
||||
'trim_frame_end_help': 'specify the end frame for extraction',
|
||||
'temp_frame_format_help': 'specify the image format used for frame extraction',
|
||||
'temp_frame_quality_help': 'specify the image quality used for frame extraction',
|
||||
'output_image_quality_help': 'specify the quality used for the output image',
|
||||
'output_video_encoder_help': 'specify the encoder used for the output video',
|
||||
'output_video_quality_help': 'specify the quality used for the output video',
|
||||
'max_memory_help': 'specify the maximum amount of ram to be used (in gb)',
|
||||
'execution_providers_help': 'choose from the available execution providers (choices: {choices}, ...)',
|
||||
'execution_thread_count_help': 'specify the number of execution threads',
|
||||
'execution_queue_count_help': 'specify the number of execution queries',
|
||||
'headless_help': 'run the program in headless mode',
|
||||
'creating_temp': 'Creating temporary resources',
|
||||
'extracting_frames_fps': 'Extracting frames with {fps} FPS',
|
||||
'processing': 'Processing',
|
||||
'downloading': 'Downloading',
|
||||
'temp_frames_not_found': 'Temporary frames not found',
|
||||
'creating_video_fps': 'Creating video with {fps} FPS',
|
||||
'creating_video_failed': 'Creating video failed',
|
||||
'compressing_image': 'Compressing image',
|
||||
'compressing_image_failed': 'Compressing image failed',
|
||||
'merging_video_fps': 'Merging video with {fps} FPS',
|
||||
'merging_video_failed': 'Merging video failed',
|
||||
'skipping_audio': 'Skipping audio',
|
||||
'restoring_audio': 'Restoring audio',
|
||||
'restoring_audio_failed': 'Restoring audio failed',
|
||||
'clearing_temp': 'Clearing temporary resources',
|
||||
'processing_image_succeed': 'Processing to image succeed',
|
||||
'processing_image_failed': 'Processing to image failed',
|
||||
@@ -43,14 +49,17 @@ WORDING =\
|
||||
'processing_video_failed': 'Processing to video failed',
|
||||
'select_image_source': 'Select an image for source path',
|
||||
'select_image_or_video_target': 'Select an image or video for target path',
|
||||
'select_file_or_directory_output': 'Select an file or directory for output path',
|
||||
'no_source_face_detected': 'No source face detected',
|
||||
'frame_processor_not_loaded': 'Frame processor {frame_processor} could not be loaded',
|
||||
'frame_processor_not_implemented': 'Frame processor {frame_processor} not implemented correctly',
|
||||
'ui_layout_not_loaded': 'UI layout {ui_layout} could not be loaded',
|
||||
'ui_layout_not_implemented': 'UI layout {ui_layout} not implemented correctly',
|
||||
'start_button_label': 'START',
|
||||
'stop_button_label': 'STOP',
|
||||
'clear_button_label': 'CLEAR',
|
||||
'benchmark_result_dataframe_label': 'BENCHMARK RESULT',
|
||||
'benchmark_runs_checkbox_group_label': 'BENCHMARK RUNS',
|
||||
'benchmark_results_dataframe_label': 'BENCHMARK RESULTS',
|
||||
'benchmark_cycles_slider_label': 'BENCHMARK CYCLES',
|
||||
'execution_providers_checkbox_group_label': 'EXECUTION PROVIDERS',
|
||||
'execution_thread_count_slider_label': 'EXECUTION THREAD COUNT',
|
||||
@@ -61,7 +70,10 @@ WORDING =\
|
||||
'reference_face_gallery_label': 'REFERENCE FACE',
|
||||
'face_recognition_dropdown_label': 'FACE RECOGNITION',
|
||||
'reference_face_distance_slider_label': 'REFERENCE FACE DISTANCE',
|
||||
'max_memory_slider_label': 'MAX MEMORY',
|
||||
'output_image_or_video_label': 'OUTPUT',
|
||||
'output_path_textbox_label': 'OUTPUT PATH',
|
||||
'output_image_quality_slider_label': 'OUTPUT IMAGE QUALITY',
|
||||
'output_video_encoder_dropdown_label': 'OUTPUT VIDEO ENCODER',
|
||||
'output_video_quality_slider_label': 'OUTPUT VIDEO QUALITY',
|
||||
'preview_image_label': 'PREVIEW',
|
||||
@@ -76,6 +88,8 @@ WORDING =\
|
||||
'trim_frame_end_slider_label': 'TRIM FRAME END',
|
||||
'source_file_label': 'SOURCE',
|
||||
'target_file_label': 'TARGET',
|
||||
'webcam_image_label': 'WEBCAM',
|
||||
'webcam_mode_radio_label': 'WEBCAM MODE',
|
||||
'point': '.',
|
||||
'comma': ',',
|
||||
'colon': ':',
|
||||
|
||||
Reference in New Issue
Block a user