├── .gitignore ├── LICENSE ├── README.en.md ├── README.md ├── Tailor用户协议.docx ├── app ├── __init__.py ├── config │ ├── __init__.py │ ├── app_image.py │ └── config.py ├── db │ ├── __init__.py │ ├── config.db │ ├── create_config.py │ ├── create_custom.py │ ├── create_projects.py │ ├── custom.db │ └── projects.db ├── src │ ├── __init__.py │ ├── algorithm │ │ ├── ReadMe.txt │ │ ├── __init__.py │ │ ├── base │ │ │ ├── __init__.py │ │ │ ├── dd_color │ │ │ │ ├── __init__.py │ │ │ │ └── dd_color.py │ │ │ ├── emoti_voice │ │ │ │ ├── __init__.py │ │ │ │ ├── checkpoint │ │ │ │ │ └── jieba │ │ │ │ │ │ └── jieba.cache │ │ │ │ ├── config │ │ │ │ │ ├── config.py │ │ │ │ │ └── config.yaml │ │ │ │ ├── data │ │ │ │ │ ├── lexicon │ │ │ │ │ │ └── librispeech-lexicon.txt │ │ │ │ │ └── youdao │ │ │ │ │ │ └── text │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── emotion │ │ │ │ │ │ ├── energy │ │ │ │ │ │ ├── pitch │ │ │ │ │ │ ├── speaker2 │ │ │ │ │ │ ├── speed │ │ │ │ │ │ └── tokenlist │ │ │ │ ├── emoti_voice.py │ │ │ │ ├── models │ │ │ │ │ ├── hifigan │ │ │ │ │ │ ├── env.py │ │ │ │ │ │ ├── get_random_segments.py │ │ │ │ │ │ ├── get_vocoder.py │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ └── pretrained_discriminator.py │ │ │ │ │ └── prompt_tts_modified │ │ │ │ │ │ ├── audio_processing.py │ │ │ │ │ │ ├── feats.py │ │ │ │ │ │ ├── jets.py │ │ │ │ │ │ ├── loss.py │ │ │ │ │ │ ├── model_open_source.py │ │ │ │ │ │ ├── modules │ │ │ │ │ │ ├── alignment.py │ │ │ │ │ │ ├── encoder.py │ │ │ │ │ │ ├── initialize.py │ │ │ │ │ │ └── variance.py │ │ │ │ │ │ ├── simbert.py │ │ │ │ │ │ ├── stft.py │ │ │ │ │ │ ├── style_encoder.py │ │ │ │ │ │ └── tacotron_stft.py │ │ │ │ └── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── an2cn.py │ │ │ │ │ ├── conf.py │ │ │ │ │ ├── frontend.py │ │ │ │ │ ├── frontend_cn.py │ │ │ │ │ └── frontend_en.py │ │ │ ├── face_net │ │ │ │ ├── __init__.py │ │ │ │ └── face_model.py │ │ │ ├── helsinki_nlp │ │ │ │ ├── __init__.py │ │ │ │ └── helsinki_nlp.py │ │ │ ├── lama │ │ │ │ ├── __init__.py │ │ │ │ └── lama.py │ │ │ ├── modnet │ │ │ │ ├── __init__.py │ │ │ │ ├── modnet.py │ │ │ │ └── src │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── models │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── backbones │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── mobilenetv2.py │ │ │ │ │ └── wrapper.py │ │ │ │ │ └── modnet.py │ │ │ ├── raft │ │ │ │ ├── __init__.py │ │ │ │ └── raft.py │ │ │ ├── real_esr_gan │ │ │ │ ├── __init__.py │ │ │ │ └── real_esr_gan.py │ │ │ ├── sadtalker │ │ │ │ ├── __init__.py │ │ │ │ ├── sadtalker.py │ │ │ │ └── src │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── audio2exp_models │ │ │ │ │ ├── audio2exp.py │ │ │ │ │ └── networks.py │ │ │ │ │ ├── audio2pose_models │ │ │ │ │ ├── audio2pose.py │ │ │ │ │ ├── audio_encoder.py │ │ │ │ │ ├── cvae.py │ │ │ │ │ ├── discriminator.py │ │ │ │ │ ├── networks.py │ │ │ │ │ └── res_unet.py │ │ │ │ │ ├── config │ │ │ │ │ ├── auido2exp.yaml │ │ │ │ │ ├── auido2pose.yaml │ │ │ │ │ ├── facerender.yaml │ │ │ │ │ ├── facerender_still.yaml │ │ │ │ │ └── similarity_Lm3D_all.mat │ │ │ │ │ ├── face3d │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── extract_kp_videos_safe.py │ │ │ │ │ ├── models │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── arcface_torch │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── backbones │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── iresnet.py │ │ │ │ │ │ │ │ ├── iresnet2060.py │ │ │ │ │ │ │ │ └── mobilefacenet.py │ │ │ │ │ │ └── networks.py │ │ │ │ │ └── util │ │ │ │ │ │ ├── BBRegressorParam_r.mat │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── load_mats.py │ │ │ │ │ │ └── preprocess.py │ │ │ │ │ ├── facerender │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── animate.py │ │ │ │ │ ├── modules │ │ │ │ │ │ ├── dense_motion.py │ │ │ │ │ │ ├── discriminator.py │ │ │ │ │ │ ├── generator.py │ │ │ │ │ │ ├── keypoint_detector.py │ │ │ │ │ │ ├── make_animation.py │ │ │ │ │ │ ├── mapping.py │ │ │ │ │ │ └── util.py │ │ │ │ │ └── sync_batchnorm │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── batchnorm.py │ │ │ │ │ │ ├── comm.py │ │ │ │ │ │ ├── replicate.py │ │ │ │ │ │ └── unittest.py │ │ │ │ │ ├── generate_batch.py │ │ │ │ │ ├── generate_facerender_batch.py │ │ │ │ │ ├── gradio.py │ │ │ │ │ ├── test_audio2coeff.py │ │ │ │ │ └── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── audio.py │ │ │ │ │ ├── croper.py │ │ │ │ │ ├── face_enhancer.py │ │ │ │ │ ├── hparams.py │ │ │ │ │ ├── init_path.py │ │ │ │ │ ├── paste_pic.py │ │ │ │ │ ├── preprocess.py │ │ │ │ │ ├── safetensor_helper.py │ │ │ │ │ └── videoio.py │ │ │ ├── sam2 │ │ │ │ ├── __init__.py │ │ │ │ ├── sam2 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── automatic_mask_generator.py │ │ │ │ │ ├── build_sam.py │ │ │ │ │ ├── modeling │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── backbones │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── hieradet.py │ │ │ │ │ │ │ ├── image_encoder.py │ │ │ │ │ │ │ └── utils.py │ │ │ │ │ │ ├── memory_attention.py │ │ │ │ │ │ ├── memory_encoder.py │ │ │ │ │ │ ├── position_encoding.py │ │ │ │ │ │ ├── sam │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── mask_decoder.py │ │ │ │ │ │ │ ├── prompt_encoder.py │ │ │ │ │ │ │ └── transformer.py │ │ │ │ │ │ ├── sam2_base.py │ │ │ │ │ │ └── sam2_utils.py │ │ │ │ │ ├── sam2_image_predictor.py │ │ │ │ │ ├── sam2_video_predictor.py │ │ │ │ │ └── utils │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── amg.py │ │ │ │ │ │ ├── misc.py │ │ │ │ │ │ └── transforms.py │ │ │ │ ├── sam2_configs │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── sam2_hiera_b+.yaml │ │ │ │ │ ├── sam2_hiera_l.yaml │ │ │ │ │ ├── sam2_hiera_s.yaml │ │ │ │ │ └── sam2_hiera_t.yaml │ │ │ │ └── video_predictor.py │ │ │ └── whisper │ │ │ │ ├── __init__.py │ │ │ │ ├── type.py │ │ │ │ └── whisper_model.py │ │ ├── utils │ │ │ ├── __init__.py │ │ │ ├── audio.py │ │ │ └── download.py │ │ ├── video_cut_audio │ │ │ ├── __init__.py │ │ │ ├── audio_cut.py │ │ │ ├── transcribe.py │ │ │ ├── utils.py │ │ │ └── video_cut_audio.py │ │ ├── video_cut_face │ │ │ ├── __init__.py │ │ │ ├── face_analysis.py │ │ │ ├── face_cut.py │ │ │ └── video_cut_face.py │ │ ├── video_generate_audio │ │ │ ├── __init__.py │ │ │ └── video_generate_audio.py │ │ ├── video_generate_broadcast │ │ │ ├── __init__.py │ │ │ └── video_generate_broadcast.py │ │ ├── video_generate_captions │ │ │ ├── __init__.py │ │ │ └── video_generate_captions.py │ │ ├── video_generate_color │ │ │ ├── __init__.py │ │ │ └── video_generate_color.py │ │ ├── video_generate_language │ │ │ ├── __init__.py │ │ │ └── video_generate_language.py │ │ ├── video_optimize_background │ │ │ ├── __init__.py │ │ │ └── video_optimize_background.py │ │ ├── video_optimize_erase_subtitles │ │ │ ├── __init__.py │ │ │ └── video_optimize_erase_subtitles.py │ │ ├── video_optimize_fluency │ │ │ ├── __init__.py │ │ │ └── video_optimize_fluency.py │ │ ├── video_optimize_local_processing │ │ │ ├── __init__.py │ │ │ └── video_optimize_local_processing.py │ │ ├── video_optimize_remove_target │ │ │ ├── __init__.py │ │ │ └── video_optimize_remove_target.py │ │ └── video_optimize_resolution │ │ │ ├── __init__.py │ │ │ └── video_optimize_resolution.py │ ├── controller │ │ ├── __init__.py │ │ ├── browse_ctrl.py │ │ ├── custom_ctrl.py │ │ └── project_info_ctrl.py │ ├── dao │ │ ├── __init__.py │ │ ├── browse_dao.py │ │ ├── custom_dao.py │ │ └── project_info_dao.py │ ├── model │ │ ├── __init__.py │ │ ├── browse.py │ │ ├── custom.py │ │ └── project_info.py │ ├── project │ │ ├── __init__.py │ │ ├── controller │ │ │ ├── __init__.py │ │ │ ├── action_ctrl.py │ │ │ └── video_ctrl.py │ │ ├── dao │ │ │ ├── __init__.py │ │ │ ├── action_dao.py │ │ │ ├── config_dao.py │ │ │ ├── operation_dao.py │ │ │ └── video_dao.py │ │ └── model │ │ │ ├── __init__.py │ │ │ ├── action.py │ │ │ ├── config.py │ │ │ ├── operation.py │ │ │ └── video.py │ └── utils │ │ ├── __init__.py │ │ ├── context_manager.py │ │ ├── db_helper.py │ │ ├── db_utils.py │ │ ├── imager.py │ │ ├── logger.py │ │ ├── register.py │ │ ├── timer.py │ │ └── zipper.py ├── static │ ├── add_dark.png │ ├── add_light.png │ ├── backward_dark.png │ ├── backward_light.png │ ├── cut_dark.png │ ├── cut_light.png │ ├── forward_dark.png │ ├── forward_light.png │ ├── hand_dark.png │ ├── hand_light.png │ ├── icon.svg │ ├── icon_128x128.png │ ├── icon_16x16.png │ ├── icon_256x256.ico │ ├── icon_256x256.png │ ├── icon_32x32.png │ ├── icon_64x64.png │ ├── logo_dark.png │ ├── logo_dark.svg │ ├── logo_light.png │ ├── logo_light.svg │ ├── new_dark.png │ ├── new_light.png │ ├── new_project.png │ ├── new_project_bck.png │ ├── open_dark.png │ ├── open_light.png │ ├── pause_dark.png │ ├── pause_light.png │ ├── play_dark.png │ ├── play_light.png │ ├── play_to_left_dark.png │ ├── play_to_left_light.png │ ├── play_to_right_dark.png │ ├── play_to_right_light.png │ ├── select_dark.png │ ├── select_light.png │ ├── set_dark.png │ └── set_light.png ├── tailorwidgets │ ├── __init__.py │ ├── default │ │ ├── __init__.py │ │ └── filetypes.py │ ├── static │ │ ├── add_dark.png │ │ ├── add_light.png │ │ ├── backward_dark.png │ │ ├── backward_light.png │ │ ├── color_wheel.png │ │ ├── cut_dark.png │ │ ├── cut_light.png │ │ ├── delete.png │ │ ├── error.png │ │ ├── forward_dark.png │ │ ├── forward_light.png │ │ ├── hand_dark.png │ │ ├── hand_light.png │ │ ├── info.png │ │ ├── pause_dark.png │ │ ├── pause_light.png │ │ ├── play_dark.png │ │ ├── play_light.png │ │ ├── play_to_left_dark.png │ │ ├── play_to_left_light.png │ │ ├── play_to_right_dark.png │ │ ├── play_to_right_light.png │ │ ├── question.png │ │ ├── select_dark.png │ │ ├── select_light.png │ │ ├── selected_delete_icon.png │ │ ├── success.png │ │ ├── target.png │ │ ├── unselected_delete_icon.png │ │ └── warning.png │ ├── tailor_ask_color.py │ ├── tailor_block_view.py │ ├── tailor_checkbox_dialog.py │ ├── tailor_file_dialog.py │ ├── tailor_image_checkbox.py │ ├── tailor_image_dialog.py │ ├── tailor_image_text_dialog.py │ ├── tailor_input_dialog.py │ ├── tailor_line_dialog.py │ ├── tailor_menu.py │ ├── tailor_menu_bar.py │ ├── tailor_message_box.py │ ├── tailor_modal.py │ ├── tailor_multi_radios_dialog.py │ ├── tailor_multi_timeline.py │ ├── tailor_open_modal.py │ ├── tailor_operate_dialog.py │ ├── tailor_radio_dialog.py │ ├── tailor_single_timeline.py │ ├── tailor_table.py │ ├── tailor_table_dialog.py │ ├── tailor_time_text_dialog.py │ ├── tailor_tree_view.py │ ├── tailor_tree_view_bck.py │ └── tailor_video_player.py ├── template │ ├── __init__.py │ ├── app.py │ ├── function │ │ ├── __init__.py │ │ ├── video_cut_audio.py │ │ ├── video_cut_face.py │ │ ├── video_generate_audio.py │ │ ├── video_generate_broadcast.py │ │ ├── video_generate_captions.py │ │ ├── video_generate_color.py │ │ ├── video_generate_language.py │ │ ├── video_optimize_background.py │ │ ├── video_optimize_erase_subtitles.py │ │ ├── video_optimize_fluency.py │ │ ├── video_optimize_local_processing.py │ │ ├── video_optimize_remove_target.py │ │ └── video_optimize_resolution.py │ ├── home.py │ ├── locale │ │ ├── __init__.py │ │ ├── en_US │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.po │ │ │ │ ├── home.po │ │ │ │ └── work.po │ │ ├── zh_CN │ │ │ └── LC_MESSAGES │ │ │ │ ├── app.po │ │ │ │ ├── home.po │ │ │ │ └── work.po │ │ └── zh_TW │ │ │ └── LC_MESSAGES │ │ │ ├── app.po │ │ │ ├── home.po │ │ │ └── work.po │ ├── module │ │ ├── __init__.py │ │ ├── new_project_window.py │ │ ├── project_frame.py │ │ ├── project_view.py │ │ └── video_frame.py │ └── work.py └── utils │ ├── __init__.py │ ├── app_image.py │ ├── apperance_mode.py │ ├── convert.py │ ├── function.py │ ├── language.py │ ├── menu.py │ ├── paths.py │ └── version.py ├── assets ├── Alipay.jpg ├── WeChatpay.jpg ├── erase_subtitles.gif ├── home.png ├── logo.png ├── remove_target.gif ├── wechat-group.jpg ├── wechat-public.jpg └── work.png ├── font ├── Hanzi-Pinyin-Font.top.ttf ├── Mengshen-HanSerif.ttf ├── Mengshen-Handwritten.ttf ├── biantao.ttf ├── cat_eat_black.ttf ├── douyuFont.otf ├── jingnan.otf ├── pomo.ttf ├── shehui.otf ├── simhei.ttf └── wendao.ttf ├── main.py ├── requirements.txt └── tools ├── __init__.py ├── i18n_tools.py └── model_download.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/README.en.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/README.md -------------------------------------------------------------------------------- /Tailor用户协议.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/Tailor用户协议.docx -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/__init__.py -------------------------------------------------------------------------------- /app/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/config/app_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/config/app_image.py -------------------------------------------------------------------------------- /app/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/config/config.py -------------------------------------------------------------------------------- /app/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/db/config.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/db/config.db -------------------------------------------------------------------------------- /app/db/create_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/db/create_config.py -------------------------------------------------------------------------------- /app/db/create_custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/db/create_custom.py -------------------------------------------------------------------------------- /app/db/create_projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/db/create_projects.py -------------------------------------------------------------------------------- /app/db/custom.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/db/custom.db -------------------------------------------------------------------------------- /app/db/projects.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/db/projects.db -------------------------------------------------------------------------------- /app/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/algorithm/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/ReadMe.txt -------------------------------------------------------------------------------- /app/src/algorithm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/__init__.py -------------------------------------------------------------------------------- /app/src/algorithm/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/__init__.py -------------------------------------------------------------------------------- /app/src/algorithm/base/dd_color/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/algorithm/base/dd_color/dd_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/dd_color/dd_color.py -------------------------------------------------------------------------------- /app/src/algorithm/base/emoti_voice/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/algorithm/base/emoti_voice/checkpoint/jieba/jieba.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/emoti_voice/checkpoint/jieba/jieba.cache -------------------------------------------------------------------------------- /app/src/algorithm/base/emoti_voice/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/emoti_voice/config/config.py -------------------------------------------------------------------------------- /app/src/algorithm/base/emoti_voice/config/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/emoti_voice/config/config.yaml -------------------------------------------------------------------------------- /app/src/algorithm/base/emoti_voice/data/lexicon/librispeech-lexicon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/emoti_voice/data/lexicon/librispeech-lexicon.txt -------------------------------------------------------------------------------- /app/src/algorithm/base/emoti_voice/data/youdao/text/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/emoti_voice/data/youdao/text/README.md -------------------------------------------------------------------------------- /app/src/algorithm/base/emoti_voice/data/youdao/text/emotion: -------------------------------------------------------------------------------- 1 | 普通 2 | 生气 3 | 开心 4 | 惊讶 5 | 悲伤 6 | 厌恶 7 | 恐惧 -------------------------------------------------------------------------------- /app/src/algorithm/base/emoti_voice/data/youdao/text/energy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/emoti_voice/data/youdao/text/energy -------------------------------------------------------------------------------- /app/src/algorithm/base/emoti_voice/data/youdao/text/pitch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/emoti_voice/data/youdao/text/pitch -------------------------------------------------------------------------------- /app/src/algorithm/base/emoti_voice/data/youdao/text/speaker2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/emoti_voice/data/youdao/text/speaker2 -------------------------------------------------------------------------------- /app/src/algorithm/base/emoti_voice/data/youdao/text/speed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/emoti_voice/data/youdao/text/speed -------------------------------------------------------------------------------- /app/src/algorithm/base/emoti_voice/data/youdao/text/tokenlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/emoti_voice/data/youdao/text/tokenlist -------------------------------------------------------------------------------- /app/src/algorithm/base/emoti_voice/emoti_voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/emoti_voice/emoti_voice.py -------------------------------------------------------------------------------- /app/src/algorithm/base/emoti_voice/models/hifigan/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/emoti_voice/models/hifigan/env.py -------------------------------------------------------------------------------- /app/src/algorithm/base/emoti_voice/models/hifigan/get_random_segments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/emoti_voice/models/hifigan/get_random_segments.py -------------------------------------------------------------------------------- /app/src/algorithm/base/emoti_voice/models/hifigan/get_vocoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/emoti_voice/models/hifigan/get_vocoder.py -------------------------------------------------------------------------------- /app/src/algorithm/base/emoti_voice/models/hifigan/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/emoti_voice/models/hifigan/models.py -------------------------------------------------------------------------------- /app/src/algorithm/base/emoti_voice/models/hifigan/pretrained_discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/emoti_voice/models/hifigan/pretrained_discriminator.py -------------------------------------------------------------------------------- /app/src/algorithm/base/emoti_voice/models/prompt_tts_modified/audio_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/emoti_voice/models/prompt_tts_modified/audio_processing.py -------------------------------------------------------------------------------- /app/src/algorithm/base/emoti_voice/models/prompt_tts_modified/feats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/emoti_voice/models/prompt_tts_modified/feats.py -------------------------------------------------------------------------------- /app/src/algorithm/base/emoti_voice/models/prompt_tts_modified/jets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/emoti_voice/models/prompt_tts_modified/jets.py -------------------------------------------------------------------------------- /app/src/algorithm/base/emoti_voice/models/prompt_tts_modified/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/emoti_voice/models/prompt_tts_modified/loss.py -------------------------------------------------------------------------------- /app/src/algorithm/base/emoti_voice/models/prompt_tts_modified/model_open_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/emoti_voice/models/prompt_tts_modified/model_open_source.py -------------------------------------------------------------------------------- /app/src/algorithm/base/emoti_voice/models/prompt_tts_modified/modules/alignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/emoti_voice/models/prompt_tts_modified/modules/alignment.py -------------------------------------------------------------------------------- /app/src/algorithm/base/emoti_voice/models/prompt_tts_modified/modules/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/emoti_voice/models/prompt_tts_modified/modules/encoder.py -------------------------------------------------------------------------------- /app/src/algorithm/base/emoti_voice/models/prompt_tts_modified/modules/initialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/emoti_voice/models/prompt_tts_modified/modules/initialize.py -------------------------------------------------------------------------------- /app/src/algorithm/base/emoti_voice/models/prompt_tts_modified/modules/variance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/emoti_voice/models/prompt_tts_modified/modules/variance.py -------------------------------------------------------------------------------- /app/src/algorithm/base/emoti_voice/models/prompt_tts_modified/simbert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/emoti_voice/models/prompt_tts_modified/simbert.py -------------------------------------------------------------------------------- /app/src/algorithm/base/emoti_voice/models/prompt_tts_modified/stft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/emoti_voice/models/prompt_tts_modified/stft.py -------------------------------------------------------------------------------- /app/src/algorithm/base/emoti_voice/models/prompt_tts_modified/style_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/emoti_voice/models/prompt_tts_modified/style_encoder.py -------------------------------------------------------------------------------- /app/src/algorithm/base/emoti_voice/models/prompt_tts_modified/tacotron_stft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/emoti_voice/models/prompt_tts_modified/tacotron_stft.py -------------------------------------------------------------------------------- /app/src/algorithm/base/emoti_voice/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/algorithm/base/emoti_voice/utils/an2cn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/emoti_voice/utils/an2cn.py -------------------------------------------------------------------------------- /app/src/algorithm/base/emoti_voice/utils/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/emoti_voice/utils/conf.py -------------------------------------------------------------------------------- /app/src/algorithm/base/emoti_voice/utils/frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/emoti_voice/utils/frontend.py -------------------------------------------------------------------------------- /app/src/algorithm/base/emoti_voice/utils/frontend_cn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/emoti_voice/utils/frontend_cn.py -------------------------------------------------------------------------------- /app/src/algorithm/base/emoti_voice/utils/frontend_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/emoti_voice/utils/frontend_en.py -------------------------------------------------------------------------------- /app/src/algorithm/base/face_net/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/algorithm/base/face_net/face_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/face_net/face_model.py -------------------------------------------------------------------------------- /app/src/algorithm/base/helsinki_nlp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/algorithm/base/helsinki_nlp/helsinki_nlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/helsinki_nlp/helsinki_nlp.py -------------------------------------------------------------------------------- /app/src/algorithm/base/lama/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/algorithm/base/lama/lama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/lama/lama.py -------------------------------------------------------------------------------- /app/src/algorithm/base/modnet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/algorithm/base/modnet/modnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/modnet/modnet.py -------------------------------------------------------------------------------- /app/src/algorithm/base/modnet/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/algorithm/base/modnet/src/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/algorithm/base/modnet/src/models/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/modnet/src/models/backbones/__init__.py -------------------------------------------------------------------------------- /app/src/algorithm/base/modnet/src/models/backbones/mobilenetv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/modnet/src/models/backbones/mobilenetv2.py -------------------------------------------------------------------------------- /app/src/algorithm/base/modnet/src/models/backbones/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/modnet/src/models/backbones/wrapper.py -------------------------------------------------------------------------------- /app/src/algorithm/base/modnet/src/models/modnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/modnet/src/models/modnet.py -------------------------------------------------------------------------------- /app/src/algorithm/base/raft/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/algorithm/base/raft/raft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/raft/raft.py -------------------------------------------------------------------------------- /app/src/algorithm/base/real_esr_gan/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/algorithm/base/real_esr_gan/real_esr_gan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/real_esr_gan/real_esr_gan.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/sadtalker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/sadtalker.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/audio2exp_models/audio2exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/audio2exp_models/audio2exp.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/audio2exp_models/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/audio2exp_models/networks.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/audio2pose_models/audio2pose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/audio2pose_models/audio2pose.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/audio2pose_models/audio_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/audio2pose_models/audio_encoder.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/audio2pose_models/cvae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/audio2pose_models/cvae.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/audio2pose_models/discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/audio2pose_models/discriminator.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/audio2pose_models/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/audio2pose_models/networks.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/audio2pose_models/res_unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/audio2pose_models/res_unet.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/config/auido2exp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/config/auido2exp.yaml -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/config/auido2pose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/config/auido2pose.yaml -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/config/facerender.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/config/facerender.yaml -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/config/facerender_still.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/config/facerender_still.yaml -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/config/similarity_Lm3D_all.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/config/similarity_Lm3D_all.mat -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/face3d/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/face3d/extract_kp_videos_safe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/face3d/extract_kp_videos_safe.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/face3d/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/face3d/models/arcface_torch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/face3d/models/arcface_torch/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/face3d/models/arcface_torch/backbones/__init__.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/face3d/models/arcface_torch/backbones/iresnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/face3d/models/arcface_torch/backbones/iresnet.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/face3d/models/arcface_torch/backbones/iresnet2060.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/face3d/models/arcface_torch/backbones/iresnet2060.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/face3d/models/arcface_torch/backbones/mobilefacenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/face3d/models/arcface_torch/backbones/mobilefacenet.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/face3d/models/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/face3d/models/networks.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/face3d/util/BBRegressorParam_r.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/face3d/util/BBRegressorParam_r.mat -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/face3d/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/face3d/util/load_mats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/face3d/util/load_mats.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/face3d/util/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/face3d/util/preprocess.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/facerender/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/facerender/animate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/facerender/animate.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/facerender/modules/dense_motion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/facerender/modules/dense_motion.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/facerender/modules/discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/facerender/modules/discriminator.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/facerender/modules/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/facerender/modules/generator.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/facerender/modules/keypoint_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/facerender/modules/keypoint_detector.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/facerender/modules/make_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/facerender/modules/make_animation.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/facerender/modules/mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/facerender/modules/mapping.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/facerender/modules/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/facerender/modules/util.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/facerender/sync_batchnorm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/facerender/sync_batchnorm/__init__.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/facerender/sync_batchnorm/batchnorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/facerender/sync_batchnorm/batchnorm.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/facerender/sync_batchnorm/comm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/facerender/sync_batchnorm/comm.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/facerender/sync_batchnorm/replicate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/facerender/sync_batchnorm/replicate.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/facerender/sync_batchnorm/unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/facerender/sync_batchnorm/unittest.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/generate_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/generate_batch.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/generate_facerender_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/generate_facerender_batch.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/gradio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/gradio.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/test_audio2coeff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/test_audio2coeff.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/utils/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/utils/audio.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/utils/croper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/utils/croper.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/utils/face_enhancer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/utils/face_enhancer.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/utils/hparams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/utils/hparams.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/utils/init_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/utils/init_path.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/utils/paste_pic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/utils/paste_pic.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/utils/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/utils/preprocess.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/utils/safetensor_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/utils/safetensor_helper.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sadtalker/src/utils/videoio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sadtalker/src/utils/videoio.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sam2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/algorithm/base/sam2/sam2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sam2/sam2/__init__.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sam2/sam2/automatic_mask_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sam2/sam2/automatic_mask_generator.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sam2/sam2/build_sam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sam2/sam2/build_sam.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sam2/sam2/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sam2/sam2/modeling/__init__.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sam2/sam2/modeling/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sam2/sam2/modeling/backbones/__init__.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sam2/sam2/modeling/backbones/hieradet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sam2/sam2/modeling/backbones/hieradet.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sam2/sam2/modeling/backbones/image_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sam2/sam2/modeling/backbones/image_encoder.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sam2/sam2/modeling/backbones/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sam2/sam2/modeling/backbones/utils.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sam2/sam2/modeling/memory_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sam2/sam2/modeling/memory_attention.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sam2/sam2/modeling/memory_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sam2/sam2/modeling/memory_encoder.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sam2/sam2/modeling/position_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sam2/sam2/modeling/position_encoding.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sam2/sam2/modeling/sam/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sam2/sam2/modeling/sam/__init__.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sam2/sam2/modeling/sam/mask_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sam2/sam2/modeling/sam/mask_decoder.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sam2/sam2/modeling/sam/prompt_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sam2/sam2/modeling/sam/prompt_encoder.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sam2/sam2/modeling/sam/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sam2/sam2/modeling/sam/transformer.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sam2/sam2/modeling/sam2_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sam2/sam2/modeling/sam2_base.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sam2/sam2/modeling/sam2_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sam2/sam2/modeling/sam2_utils.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sam2/sam2/sam2_image_predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sam2/sam2/sam2_image_predictor.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sam2/sam2/sam2_video_predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sam2/sam2/sam2_video_predictor.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sam2/sam2/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sam2/sam2/utils/__init__.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sam2/sam2/utils/amg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sam2/sam2/utils/amg.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sam2/sam2/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sam2/sam2/utils/misc.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sam2/sam2/utils/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sam2/sam2/utils/transforms.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sam2/sam2_configs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sam2/sam2_configs/__init__.py -------------------------------------------------------------------------------- /app/src/algorithm/base/sam2/sam2_configs/sam2_hiera_b+.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sam2/sam2_configs/sam2_hiera_b+.yaml -------------------------------------------------------------------------------- /app/src/algorithm/base/sam2/sam2_configs/sam2_hiera_l.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sam2/sam2_configs/sam2_hiera_l.yaml -------------------------------------------------------------------------------- /app/src/algorithm/base/sam2/sam2_configs/sam2_hiera_s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sam2/sam2_configs/sam2_hiera_s.yaml -------------------------------------------------------------------------------- /app/src/algorithm/base/sam2/sam2_configs/sam2_hiera_t.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sam2/sam2_configs/sam2_hiera_t.yaml -------------------------------------------------------------------------------- /app/src/algorithm/base/sam2/video_predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/sam2/video_predictor.py -------------------------------------------------------------------------------- /app/src/algorithm/base/whisper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/algorithm/base/whisper/type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/whisper/type.py -------------------------------------------------------------------------------- /app/src/algorithm/base/whisper/whisper_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/base/whisper/whisper_model.py -------------------------------------------------------------------------------- /app/src/algorithm/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/algorithm/utils/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/utils/audio.py -------------------------------------------------------------------------------- /app/src/algorithm/utils/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/utils/download.py -------------------------------------------------------------------------------- /app/src/algorithm/video_cut_audio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/video_cut_audio/__init__.py -------------------------------------------------------------------------------- /app/src/algorithm/video_cut_audio/audio_cut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/video_cut_audio/audio_cut.py -------------------------------------------------------------------------------- /app/src/algorithm/video_cut_audio/transcribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/video_cut_audio/transcribe.py -------------------------------------------------------------------------------- /app/src/algorithm/video_cut_audio/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/video_cut_audio/utils.py -------------------------------------------------------------------------------- /app/src/algorithm/video_cut_audio/video_cut_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/video_cut_audio/video_cut_audio.py -------------------------------------------------------------------------------- /app/src/algorithm/video_cut_face/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/algorithm/video_cut_face/face_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/video_cut_face/face_analysis.py -------------------------------------------------------------------------------- /app/src/algorithm/video_cut_face/face_cut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/video_cut_face/face_cut.py -------------------------------------------------------------------------------- /app/src/algorithm/video_cut_face/video_cut_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/video_cut_face/video_cut_face.py -------------------------------------------------------------------------------- /app/src/algorithm/video_generate_audio/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/algorithm/video_generate_audio/video_generate_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/video_generate_audio/video_generate_audio.py -------------------------------------------------------------------------------- /app/src/algorithm/video_generate_broadcast/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/algorithm/video_generate_broadcast/video_generate_broadcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/video_generate_broadcast/video_generate_broadcast.py -------------------------------------------------------------------------------- /app/src/algorithm/video_generate_captions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/algorithm/video_generate_captions/video_generate_captions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/video_generate_captions/video_generate_captions.py -------------------------------------------------------------------------------- /app/src/algorithm/video_generate_color/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/algorithm/video_generate_color/video_generate_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/video_generate_color/video_generate_color.py -------------------------------------------------------------------------------- /app/src/algorithm/video_generate_language/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/algorithm/video_generate_language/video_generate_language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/video_generate_language/video_generate_language.py -------------------------------------------------------------------------------- /app/src/algorithm/video_optimize_background/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/algorithm/video_optimize_background/video_optimize_background.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/video_optimize_background/video_optimize_background.py -------------------------------------------------------------------------------- /app/src/algorithm/video_optimize_erase_subtitles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/algorithm/video_optimize_erase_subtitles/video_optimize_erase_subtitles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/video_optimize_erase_subtitles/video_optimize_erase_subtitles.py -------------------------------------------------------------------------------- /app/src/algorithm/video_optimize_fluency/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/algorithm/video_optimize_fluency/video_optimize_fluency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/video_optimize_fluency/video_optimize_fluency.py -------------------------------------------------------------------------------- /app/src/algorithm/video_optimize_local_processing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/algorithm/video_optimize_local_processing/video_optimize_local_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/video_optimize_local_processing/video_optimize_local_processing.py -------------------------------------------------------------------------------- /app/src/algorithm/video_optimize_remove_target/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/algorithm/video_optimize_remove_target/video_optimize_remove_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/video_optimize_remove_target/video_optimize_remove_target.py -------------------------------------------------------------------------------- /app/src/algorithm/video_optimize_resolution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/algorithm/video_optimize_resolution/video_optimize_resolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/algorithm/video_optimize_resolution/video_optimize_resolution.py -------------------------------------------------------------------------------- /app/src/controller/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/controller/browse_ctrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/controller/browse_ctrl.py -------------------------------------------------------------------------------- /app/src/controller/custom_ctrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/controller/custom_ctrl.py -------------------------------------------------------------------------------- /app/src/controller/project_info_ctrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/controller/project_info_ctrl.py -------------------------------------------------------------------------------- /app/src/dao/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/dao/browse_dao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/dao/browse_dao.py -------------------------------------------------------------------------------- /app/src/dao/custom_dao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/dao/custom_dao.py -------------------------------------------------------------------------------- /app/src/dao/project_info_dao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/dao/project_info_dao.py -------------------------------------------------------------------------------- /app/src/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/model/browse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/model/browse.py -------------------------------------------------------------------------------- /app/src/model/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/model/custom.py -------------------------------------------------------------------------------- /app/src/model/project_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/model/project_info.py -------------------------------------------------------------------------------- /app/src/project/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/project/__init__.py -------------------------------------------------------------------------------- /app/src/project/controller/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/project/controller/action_ctrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/project/controller/action_ctrl.py -------------------------------------------------------------------------------- /app/src/project/controller/video_ctrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/project/controller/video_ctrl.py -------------------------------------------------------------------------------- /app/src/project/dao/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/project/dao/action_dao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/project/dao/action_dao.py -------------------------------------------------------------------------------- /app/src/project/dao/config_dao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/project/dao/config_dao.py -------------------------------------------------------------------------------- /app/src/project/dao/operation_dao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/project/dao/operation_dao.py -------------------------------------------------------------------------------- /app/src/project/dao/video_dao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/project/dao/video_dao.py -------------------------------------------------------------------------------- /app/src/project/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/project/model/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/project/model/action.py -------------------------------------------------------------------------------- /app/src/project/model/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/project/model/config.py -------------------------------------------------------------------------------- /app/src/project/model/operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/project/model/operation.py -------------------------------------------------------------------------------- /app/src/project/model/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/project/model/video.py -------------------------------------------------------------------------------- /app/src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/utils/context_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/utils/context_manager.py -------------------------------------------------------------------------------- /app/src/utils/db_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/utils/db_helper.py -------------------------------------------------------------------------------- /app/src/utils/db_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/utils/db_utils.py -------------------------------------------------------------------------------- /app/src/utils/imager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/utils/imager.py -------------------------------------------------------------------------------- /app/src/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/utils/logger.py -------------------------------------------------------------------------------- /app/src/utils/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/utils/register.py -------------------------------------------------------------------------------- /app/src/utils/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/utils/timer.py -------------------------------------------------------------------------------- /app/src/utils/zipper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/src/utils/zipper.py -------------------------------------------------------------------------------- /app/static/add_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/static/add_dark.png -------------------------------------------------------------------------------- /app/static/add_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/static/add_light.png -------------------------------------------------------------------------------- /app/static/backward_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/static/backward_dark.png -------------------------------------------------------------------------------- /app/static/backward_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/static/backward_light.png -------------------------------------------------------------------------------- /app/static/cut_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/static/cut_dark.png -------------------------------------------------------------------------------- /app/static/cut_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/static/cut_light.png -------------------------------------------------------------------------------- /app/static/forward_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/static/forward_dark.png -------------------------------------------------------------------------------- /app/static/forward_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/static/forward_light.png -------------------------------------------------------------------------------- /app/static/hand_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/static/hand_dark.png -------------------------------------------------------------------------------- /app/static/hand_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/static/hand_light.png -------------------------------------------------------------------------------- /app/static/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/static/icon.svg -------------------------------------------------------------------------------- /app/static/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/static/icon_128x128.png -------------------------------------------------------------------------------- /app/static/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/static/icon_16x16.png -------------------------------------------------------------------------------- /app/static/icon_256x256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/static/icon_256x256.ico -------------------------------------------------------------------------------- /app/static/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/static/icon_256x256.png -------------------------------------------------------------------------------- /app/static/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/static/icon_32x32.png -------------------------------------------------------------------------------- /app/static/icon_64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/static/icon_64x64.png -------------------------------------------------------------------------------- /app/static/logo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/static/logo_dark.png -------------------------------------------------------------------------------- /app/static/logo_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/static/logo_dark.svg -------------------------------------------------------------------------------- /app/static/logo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/static/logo_light.png -------------------------------------------------------------------------------- /app/static/logo_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/static/logo_light.svg -------------------------------------------------------------------------------- /app/static/new_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/static/new_dark.png -------------------------------------------------------------------------------- /app/static/new_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/static/new_light.png -------------------------------------------------------------------------------- /app/static/new_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/static/new_project.png -------------------------------------------------------------------------------- /app/static/new_project_bck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/static/new_project_bck.png -------------------------------------------------------------------------------- /app/static/open_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/static/open_dark.png -------------------------------------------------------------------------------- /app/static/open_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/static/open_light.png -------------------------------------------------------------------------------- /app/static/pause_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/static/pause_dark.png -------------------------------------------------------------------------------- /app/static/pause_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/static/pause_light.png -------------------------------------------------------------------------------- /app/static/play_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/static/play_dark.png -------------------------------------------------------------------------------- /app/static/play_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/static/play_light.png -------------------------------------------------------------------------------- /app/static/play_to_left_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/static/play_to_left_dark.png -------------------------------------------------------------------------------- /app/static/play_to_left_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/static/play_to_left_light.png -------------------------------------------------------------------------------- /app/static/play_to_right_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/static/play_to_right_dark.png -------------------------------------------------------------------------------- /app/static/play_to_right_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/static/play_to_right_light.png -------------------------------------------------------------------------------- /app/static/select_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/static/select_dark.png -------------------------------------------------------------------------------- /app/static/select_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/static/select_light.png -------------------------------------------------------------------------------- /app/static/set_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/static/set_dark.png -------------------------------------------------------------------------------- /app/static/set_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/static/set_light.png -------------------------------------------------------------------------------- /app/tailorwidgets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/tailorwidgets/default/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/tailorwidgets/default/filetypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/default/filetypes.py -------------------------------------------------------------------------------- /app/tailorwidgets/static/add_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/static/add_dark.png -------------------------------------------------------------------------------- /app/tailorwidgets/static/add_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/static/add_light.png -------------------------------------------------------------------------------- /app/tailorwidgets/static/backward_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/static/backward_dark.png -------------------------------------------------------------------------------- /app/tailorwidgets/static/backward_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/static/backward_light.png -------------------------------------------------------------------------------- /app/tailorwidgets/static/color_wheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/static/color_wheel.png -------------------------------------------------------------------------------- /app/tailorwidgets/static/cut_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/static/cut_dark.png -------------------------------------------------------------------------------- /app/tailorwidgets/static/cut_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/static/cut_light.png -------------------------------------------------------------------------------- /app/tailorwidgets/static/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/static/delete.png -------------------------------------------------------------------------------- /app/tailorwidgets/static/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/static/error.png -------------------------------------------------------------------------------- /app/tailorwidgets/static/forward_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/static/forward_dark.png -------------------------------------------------------------------------------- /app/tailorwidgets/static/forward_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/static/forward_light.png -------------------------------------------------------------------------------- /app/tailorwidgets/static/hand_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/static/hand_dark.png -------------------------------------------------------------------------------- /app/tailorwidgets/static/hand_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/static/hand_light.png -------------------------------------------------------------------------------- /app/tailorwidgets/static/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/static/info.png -------------------------------------------------------------------------------- /app/tailorwidgets/static/pause_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/static/pause_dark.png -------------------------------------------------------------------------------- /app/tailorwidgets/static/pause_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/static/pause_light.png -------------------------------------------------------------------------------- /app/tailorwidgets/static/play_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/static/play_dark.png -------------------------------------------------------------------------------- /app/tailorwidgets/static/play_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/static/play_light.png -------------------------------------------------------------------------------- /app/tailorwidgets/static/play_to_left_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/static/play_to_left_dark.png -------------------------------------------------------------------------------- /app/tailorwidgets/static/play_to_left_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/static/play_to_left_light.png -------------------------------------------------------------------------------- /app/tailorwidgets/static/play_to_right_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/static/play_to_right_dark.png -------------------------------------------------------------------------------- /app/tailorwidgets/static/play_to_right_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/static/play_to_right_light.png -------------------------------------------------------------------------------- /app/tailorwidgets/static/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/static/question.png -------------------------------------------------------------------------------- /app/tailorwidgets/static/select_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/static/select_dark.png -------------------------------------------------------------------------------- /app/tailorwidgets/static/select_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/static/select_light.png -------------------------------------------------------------------------------- /app/tailorwidgets/static/selected_delete_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/static/selected_delete_icon.png -------------------------------------------------------------------------------- /app/tailorwidgets/static/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/static/success.png -------------------------------------------------------------------------------- /app/tailorwidgets/static/target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/static/target.png -------------------------------------------------------------------------------- /app/tailorwidgets/static/unselected_delete_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/static/unselected_delete_icon.png -------------------------------------------------------------------------------- /app/tailorwidgets/static/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/static/warning.png -------------------------------------------------------------------------------- /app/tailorwidgets/tailor_ask_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/tailor_ask_color.py -------------------------------------------------------------------------------- /app/tailorwidgets/tailor_block_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/tailor_block_view.py -------------------------------------------------------------------------------- /app/tailorwidgets/tailor_checkbox_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/tailor_checkbox_dialog.py -------------------------------------------------------------------------------- /app/tailorwidgets/tailor_file_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/tailor_file_dialog.py -------------------------------------------------------------------------------- /app/tailorwidgets/tailor_image_checkbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/tailor_image_checkbox.py -------------------------------------------------------------------------------- /app/tailorwidgets/tailor_image_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/tailor_image_dialog.py -------------------------------------------------------------------------------- /app/tailorwidgets/tailor_image_text_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/tailor_image_text_dialog.py -------------------------------------------------------------------------------- /app/tailorwidgets/tailor_input_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/tailor_input_dialog.py -------------------------------------------------------------------------------- /app/tailorwidgets/tailor_line_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/tailor_line_dialog.py -------------------------------------------------------------------------------- /app/tailorwidgets/tailor_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/tailor_menu.py -------------------------------------------------------------------------------- /app/tailorwidgets/tailor_menu_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/tailor_menu_bar.py -------------------------------------------------------------------------------- /app/tailorwidgets/tailor_message_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/tailor_message_box.py -------------------------------------------------------------------------------- /app/tailorwidgets/tailor_modal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/tailor_modal.py -------------------------------------------------------------------------------- /app/tailorwidgets/tailor_multi_radios_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/tailor_multi_radios_dialog.py -------------------------------------------------------------------------------- /app/tailorwidgets/tailor_multi_timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/tailor_multi_timeline.py -------------------------------------------------------------------------------- /app/tailorwidgets/tailor_open_modal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/tailor_open_modal.py -------------------------------------------------------------------------------- /app/tailorwidgets/tailor_operate_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/tailor_operate_dialog.py -------------------------------------------------------------------------------- /app/tailorwidgets/tailor_radio_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/tailor_radio_dialog.py -------------------------------------------------------------------------------- /app/tailorwidgets/tailor_single_timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/tailor_single_timeline.py -------------------------------------------------------------------------------- /app/tailorwidgets/tailor_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/tailor_table.py -------------------------------------------------------------------------------- /app/tailorwidgets/tailor_table_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/tailor_table_dialog.py -------------------------------------------------------------------------------- /app/tailorwidgets/tailor_time_text_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/tailor_time_text_dialog.py -------------------------------------------------------------------------------- /app/tailorwidgets/tailor_tree_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/tailor_tree_view.py -------------------------------------------------------------------------------- /app/tailorwidgets/tailor_tree_view_bck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/tailor_tree_view_bck.py -------------------------------------------------------------------------------- /app/tailorwidgets/tailor_video_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/tailorwidgets/tailor_video_player.py -------------------------------------------------------------------------------- /app/template/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/template/__init__.py -------------------------------------------------------------------------------- /app/template/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/template/app.py -------------------------------------------------------------------------------- /app/template/function/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/template/function/__init__.py -------------------------------------------------------------------------------- /app/template/function/video_cut_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/template/function/video_cut_audio.py -------------------------------------------------------------------------------- /app/template/function/video_cut_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/template/function/video_cut_face.py -------------------------------------------------------------------------------- /app/template/function/video_generate_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/template/function/video_generate_audio.py -------------------------------------------------------------------------------- /app/template/function/video_generate_broadcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/template/function/video_generate_broadcast.py -------------------------------------------------------------------------------- /app/template/function/video_generate_captions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/template/function/video_generate_captions.py -------------------------------------------------------------------------------- /app/template/function/video_generate_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/template/function/video_generate_color.py -------------------------------------------------------------------------------- /app/template/function/video_generate_language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/template/function/video_generate_language.py -------------------------------------------------------------------------------- /app/template/function/video_optimize_background.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/template/function/video_optimize_background.py -------------------------------------------------------------------------------- /app/template/function/video_optimize_erase_subtitles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/template/function/video_optimize_erase_subtitles.py -------------------------------------------------------------------------------- /app/template/function/video_optimize_fluency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/template/function/video_optimize_fluency.py -------------------------------------------------------------------------------- /app/template/function/video_optimize_local_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/template/function/video_optimize_local_processing.py -------------------------------------------------------------------------------- /app/template/function/video_optimize_remove_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/template/function/video_optimize_remove_target.py -------------------------------------------------------------------------------- /app/template/function/video_optimize_resolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/template/function/video_optimize_resolution.py -------------------------------------------------------------------------------- /app/template/home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/template/home.py -------------------------------------------------------------------------------- /app/template/locale/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/template/locale/__init__.py -------------------------------------------------------------------------------- /app/template/locale/en_US/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/template/locale/en_US/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /app/template/locale/en_US/LC_MESSAGES/home.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/template/locale/en_US/LC_MESSAGES/home.po -------------------------------------------------------------------------------- /app/template/locale/en_US/LC_MESSAGES/work.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/template/locale/en_US/LC_MESSAGES/work.po -------------------------------------------------------------------------------- /app/template/locale/zh_CN/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/template/locale/zh_CN/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /app/template/locale/zh_CN/LC_MESSAGES/home.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/template/locale/zh_CN/LC_MESSAGES/home.po -------------------------------------------------------------------------------- /app/template/locale/zh_CN/LC_MESSAGES/work.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/template/locale/zh_CN/LC_MESSAGES/work.po -------------------------------------------------------------------------------- /app/template/locale/zh_TW/LC_MESSAGES/app.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/template/locale/zh_TW/LC_MESSAGES/app.po -------------------------------------------------------------------------------- /app/template/locale/zh_TW/LC_MESSAGES/home.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/template/locale/zh_TW/LC_MESSAGES/home.po -------------------------------------------------------------------------------- /app/template/locale/zh_TW/LC_MESSAGES/work.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/template/locale/zh_TW/LC_MESSAGES/work.po -------------------------------------------------------------------------------- /app/template/module/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/template/module/new_project_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/template/module/new_project_window.py -------------------------------------------------------------------------------- /app/template/module/project_frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/template/module/project_frame.py -------------------------------------------------------------------------------- /app/template/module/project_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/template/module/project_view.py -------------------------------------------------------------------------------- /app/template/module/video_frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/template/module/video_frame.py -------------------------------------------------------------------------------- /app/template/work.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/template/work.py -------------------------------------------------------------------------------- /app/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/utils/__init__.py -------------------------------------------------------------------------------- /app/utils/app_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/utils/app_image.py -------------------------------------------------------------------------------- /app/utils/apperance_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/utils/apperance_mode.py -------------------------------------------------------------------------------- /app/utils/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/utils/convert.py -------------------------------------------------------------------------------- /app/utils/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/utils/function.py -------------------------------------------------------------------------------- /app/utils/language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/utils/language.py -------------------------------------------------------------------------------- /app/utils/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/utils/menu.py -------------------------------------------------------------------------------- /app/utils/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/utils/paths.py -------------------------------------------------------------------------------- /app/utils/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/app/utils/version.py -------------------------------------------------------------------------------- /assets/Alipay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/assets/Alipay.jpg -------------------------------------------------------------------------------- /assets/WeChatpay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/assets/WeChatpay.jpg -------------------------------------------------------------------------------- /assets/erase_subtitles.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/assets/erase_subtitles.gif -------------------------------------------------------------------------------- /assets/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/assets/home.png -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/remove_target.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/assets/remove_target.gif -------------------------------------------------------------------------------- /assets/wechat-group.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/assets/wechat-group.jpg -------------------------------------------------------------------------------- /assets/wechat-public.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/assets/wechat-public.jpg -------------------------------------------------------------------------------- /assets/work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/assets/work.png -------------------------------------------------------------------------------- /font/Hanzi-Pinyin-Font.top.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/font/Hanzi-Pinyin-Font.top.ttf -------------------------------------------------------------------------------- /font/Mengshen-HanSerif.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/font/Mengshen-HanSerif.ttf -------------------------------------------------------------------------------- /font/Mengshen-Handwritten.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/font/Mengshen-Handwritten.ttf -------------------------------------------------------------------------------- /font/biantao.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/font/biantao.ttf -------------------------------------------------------------------------------- /font/cat_eat_black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/font/cat_eat_black.ttf -------------------------------------------------------------------------------- /font/douyuFont.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/font/douyuFont.otf -------------------------------------------------------------------------------- /font/jingnan.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/font/jingnan.otf -------------------------------------------------------------------------------- /font/pomo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/font/pomo.ttf -------------------------------------------------------------------------------- /font/shehui.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/font/shehui.otf -------------------------------------------------------------------------------- /font/simhei.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/font/simhei.ttf -------------------------------------------------------------------------------- /font/wendao.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/font/wendao.ttf -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/requirements.txt -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/i18n_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/tools/i18n_tools.py -------------------------------------------------------------------------------- /tools/model_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mu-L/Tailor/HEAD/tools/model_download.py --------------------------------------------------------------------------------