├── LICENSE ├── README.md ├── UVR.py ├── __pycache__ ├── __version__.cpython-38.pyc ├── __version__.cpython-39.pyc ├── inference_MDX.cpython-38.pyc ├── inference_MDX.cpython-39.pyc ├── inference_demucs.cpython-38.pyc ├── inference_demucs.cpython-39.pyc ├── inference_v5.cpython-38.pyc ├── inference_v5.cpython-39.pyc ├── inference_v5_ensemble.cpython-38.pyc ├── inference_v5_ensemble.cpython-39.pyc ├── models.cpython-38.pyc └── models.cpython-39.pyc ├── __version__.py ├── data.pkl ├── demucs ├── __init__.py ├── __main__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── __init__.cpython-39.pyc │ ├── apply.cpython-38.pyc │ ├── apply.cpython-39.pyc │ ├── demucs.cpython-38.pyc │ ├── demucs.cpython-39.pyc │ ├── hdemucs.cpython-38.pyc │ ├── hdemucs.cpython-39.pyc │ ├── model.cpython-38.pyc │ ├── model.cpython-39.pyc │ ├── model_v2.cpython-38.pyc │ ├── model_v2.cpython-39.pyc │ ├── pretrained.cpython-38.pyc │ ├── pretrained.cpython-39.pyc │ ├── repo.cpython-38.pyc │ ├── repo.cpython-39.pyc │ ├── spec.cpython-38.pyc │ ├── spec.cpython-39.pyc │ ├── states.cpython-38.pyc │ ├── states.cpython-39.pyc │ ├── tasnet_v2.cpython-38.pyc │ ├── tasnet_v2.cpython-39.pyc │ ├── utils.cpython-38.pyc │ └── utils.cpython-39.pyc ├── apply.py ├── demucs.py ├── hdemucs.py ├── model.py ├── model_v2.py ├── pretrained.py ├── repo.py ├── spec.py ├── states.py ├── tasnet.py ├── tasnet_v2.py ├── utils-.py └── utils.py ├── img ├── File.png ├── GUI-Icon.png ├── UVR-Icon-v2.gif ├── UVR-Icon-v2.ico ├── UVR-banner.png ├── UVR_Demucs.png ├── UVR_v54.png ├── UVRv5.png ├── credits.png ├── demucs_opt.png ├── donate.png ├── download.png ├── ense_opt.png ├── gen_opt.png ├── help.png ├── icon.png ├── key.png ├── mdx_opt.png ├── splash.bmp ├── stop.png ├── user_ens_opt.png └── vr_opt.png ├── inference_MDX.py ├── inference_demucs.py ├── inference_v5.py ├── inference_v5_ensemble.py ├── lib_v5 ├── __pycache__ │ ├── dataset.cpython-37.pyc │ ├── dataset.cpython-38.pyc │ ├── dataset.cpython-39.pyc │ ├── filelist.cpython-38.pyc │ ├── filelist.cpython-39.pyc │ ├── layers.cpython-37.pyc │ ├── layers.cpython-39.pyc │ ├── layers_123821KB.cpython-38.pyc │ ├── layers_123821KB.cpython-39.pyc │ ├── layers_537238KB.cpython-39.pyc │ ├── model_param_init.cpython-38.pyc │ ├── model_param_init.cpython-39.pyc │ ├── nets.cpython-37.pyc │ ├── nets.cpython-39.pyc │ ├── nets_123812KB.cpython-39.pyc │ ├── nets_123821KB.cpython-38.pyc │ ├── nets_123821KB.cpython-39.pyc │ ├── nets_537238KB.cpython-39.pyc │ ├── spec_utils.cpython-37.pyc │ ├── spec_utils.cpython-38.pyc │ └── spec_utils.cpython-39.pyc ├── dataset.py ├── filelist.py ├── filelists │ ├── download_codes │ │ ├── user_code.txt │ │ └── user_code_download.txt │ ├── download_lists │ │ ├── demucs_download_list.txt │ │ ├── download_links.json │ │ ├── mdx_download_list.txt │ │ ├── temp │ │ │ └── temp.txt │ │ └── vr_download_list.txt │ ├── ensemble_list │ │ ├── mdx_demuc_en_list.txt │ │ └── vr_en_list.txt │ ├── hashes │ │ ├── mdx_new_hashes.txt │ │ ├── mdx_new_inst_hashes.txt │ │ └── mdx_original_hashes.txt │ └── model_cache │ │ ├── mdx_model_cache │ │ └── cache_goes_here.txt │ │ └── vr_param_cache │ │ └── cache_goes_here.txt ├── fonts │ ├── centurygothic │ │ ├── GOTHIC.TTF │ │ ├── GOTHICB.TTF │ │ ├── GOTHICBI.TTF │ │ └── GOTHICI.TTF │ └── unispace │ │ ├── unispace.ttf │ │ ├── unispace_bd.ttf │ │ ├── unispace_bd_it.ttf │ │ └── unispace_it.ttf ├── layers.py ├── layers_123812KB .py ├── layers_123821KB.py ├── layers_129605KB.py ├── layers_33966KB.py ├── layers_537227KB.py ├── layers_537238KB.py ├── model_param_init.py ├── modelparams │ ├── 1band_sr16000_hl512.json │ ├── 1band_sr32000_hl512.json │ ├── 1band_sr33075_hl384.json │ ├── 1band_sr44100_hl1024.json │ ├── 1band_sr44100_hl256.json │ ├── 1band_sr44100_hl512.json │ ├── 1band_sr44100_hl512_cut.json │ ├── 2band_32000.json │ ├── 2band_44100_lofi.json │ ├── 2band_48000.json │ ├── 3band_44100.json │ ├── 3band_44100_mid.json │ ├── 3band_44100_msb2.json │ ├── 4band_44100.json │ ├── 4band_44100_mid.json │ ├── 4band_44100_msb.json │ ├── 4band_44100_msb2.json │ ├── 4band_44100_reverse.json │ ├── 4band_44100_sw.json │ ├── 4band_v2.json │ ├── 4band_v2_sn.json │ ├── Auto │ └── ensemble.json ├── modelparamset.py ├── nets.py ├── nets_123812KB.py ├── nets_123821KB.py ├── nets_129605KB.py ├── nets_33966KB.py ├── nets_537227KB.py ├── nets_537238KB.py ├── sox │ ├── MDX-NET_Noise_Profile_14_kHz.prof │ ├── MDX-NET_Noise_Profile_17_kHz.prof │ ├── MDX-NET_Noise_Profile_Full_Band.prof │ ├── Sox goes here.txt │ └── mdxnetnoisereduc.prof ├── spec_utils.py └── sv_ttk │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-38.pyc │ └── __init__.cpython-39.pyc │ ├── sun-valley.tcl │ └── theme │ ├── dark.tcl │ ├── dark │ ├── arrow-down.png │ ├── arrow-right.png │ ├── arrow-up.png │ ├── button-accent-disabled.png │ ├── button-accent-hover.png │ ├── button-accent-pressed.png │ ├── button-accent-rest.png │ ├── button-close-hover.png │ ├── button-close-pressed.png │ ├── button-disabled.png │ ├── button-hover.png │ ├── button-pressed.png │ ├── button-rest.png │ ├── button-rest_alternative!!.png │ ├── button-titlebar-hover.png │ ├── button-titlebar-pressed.png │ ├── card.png │ ├── check-disabled.png │ ├── check-hover.png │ ├── check-pressed.png │ ├── check-rest.png │ ├── check-tri-disabled.png │ ├── check-tri-hover.png │ ├── check-tri-pressed.png │ ├── check-tri-rest.png │ ├── check-unsel-disabled.png │ ├── check-unsel-hover.png │ ├── check-unsel-pressed.png │ ├── check-unsel-rest.png │ ├── empty.png │ ├── entry-disabled.png │ ├── entry-focus.png │ ├── entry-hover.png │ ├── entry-invalid.png │ ├── entry-rest.png │ ├── notebook-border.png │ ├── notebook.png │ ├── progress-pbar-hor.png │ ├── progress-pbar-vert.png │ ├── progress-trough-hor.png │ ├── progress-trough-vert.png │ ├── radio-disabled.png │ ├── radio-hover.png │ ├── radio-pressed.png │ ├── radio-rest.png │ ├── radio-unsel-disabled.png │ ├── radio-unsel-hover.png │ ├── radio-unsel-pressed.png │ ├── radio-unsel-rest.png │ ├── scale-thumb-disabled.png │ ├── scale-thumb-hover.png │ ├── scale-thumb-pressed.png │ ├── scale-thumb-rest.png │ ├── scale-trough-hor.png │ ├── scale-trough-vert.png │ ├── scroll-down.png │ ├── scroll-hor-thumb.png │ ├── scroll-hor-trough.png │ ├── scroll-left.png │ ├── scroll-right.png │ ├── scroll-up.png │ ├── scroll-vert-thumb.png │ ├── scroll-vert-trough.png │ ├── separator.png │ ├── sizegrip.png │ ├── switch-off-disabled.png │ ├── switch-off-hover.png │ ├── switch-off-pressed.png │ ├── switch-off-rest.png │ ├── switch-on-disabled.png │ ├── switch-on-hover.png │ ├── switch-on-pressed.png │ ├── switch-on-rest.png │ ├── tab-hover.png │ ├── tab-rest.png │ ├── tab-selected.png │ ├── treeheading-hover.png │ ├── treeheading-pressed.png │ └── treeheading-rest.png │ ├── light.tcl │ └── light │ ├── box-accent.png │ ├── box-basic.png │ ├── box-hover.png │ ├── box-invalid.png │ ├── button-hover.png │ ├── card.png │ ├── check-accent.png │ ├── check-basic.png │ ├── check-hover.png │ ├── check-tri-accent.png │ ├── check-tri-basic.png │ ├── check-tri-hover.png │ ├── circle-accent.png │ ├── circle-basic.png │ ├── circle-hover.png │ ├── combo-button-basic.png │ ├── combo-button-focus.png │ ├── combo-button-hover.png │ ├── down-accent.png │ ├── down.png │ ├── empty.png │ ├── hor-accent.png │ ├── hor-basic.png │ ├── hor-hover.png │ ├── notebook.png │ ├── off-basic.png │ ├── off-hover.png │ ├── on-accent.png │ ├── on-basic.png │ ├── on-hover.png │ ├── outline-basic.png │ ├── outline-hover.png │ ├── radio-accent.png │ ├── radio-basic.png │ ├── radio-hover.png │ ├── radio-tri-accent.png │ ├── radio-tri-basic.png │ ├── radio-tri-hover.png │ ├── rect-accent-hover.png │ ├── rect-accent.png │ ├── rect-basic.png │ ├── rect-hover.png │ ├── right.png │ ├── scale-hor.png │ ├── scale-vert.png │ ├── separator.png │ ├── size.png │ ├── tab-basic.png │ ├── tab-disabled.png │ ├── tab-hover.png │ ├── tick-hor-accent.png │ ├── tick-hor-basic.png │ ├── tick-hor-hover.png │ ├── tick-vert-accent.png │ ├── tick-vert-basic.png │ ├── tick-vert-hover.png │ ├── tree-basic.png │ ├── tree-pressed.png │ ├── up-accent.png │ ├── up.png │ ├── vert-accent.png │ ├── vert-basic.png │ └── vert-hover.png ├── main.png ├── models.py ├── models ├── Demucs_Models │ ├── demucs_models_go_here.txt │ └── v3_repo │ │ └── demucs_models_go_here.txt ├── MDX_Net_Models │ └── MDX-Net_Models_go_here.txt └── Main_Models │ └── VR_Architecture_Models_go_here.txt ├── requirements.txt ├── tkinterdnd2 ├── TkinterDnD.py ├── __init__.py ├── __pycache__ │ ├── TkinterDnD.cpython-38.pyc │ ├── TkinterDnD.cpython-39.pyc │ ├── __init__.cpython-38.pyc │ └── __init__.cpython-39.pyc └── tkdnd │ ├── linux64 │ ├── libtkdnd2.9.2.so │ ├── pkgIndex.tcl │ ├── tkdnd.tcl │ ├── tkdnd_compat.tcl │ ├── tkdnd_generic.tcl │ ├── tkdnd_macosx.tcl │ ├── tkdnd_unix.tcl │ ├── tkdnd_utils.tcl │ └── tkdnd_windows.tcl │ ├── osx64 │ ├── libtkdnd2.9.2.dylib │ ├── pkgIndex.tcl │ ├── tkdnd.tcl │ ├── tkdnd_compat.tcl │ ├── tkdnd_generic.tcl │ ├── tkdnd_macosx.tcl │ ├── tkdnd_unix.tcl │ ├── tkdnd_utils.tcl │ └── tkdnd_windows.tcl │ └── win64 │ ├── libtkdnd2.9.2.dll │ ├── pkgIndex.tcl │ ├── tkdnd.tcl │ ├── tkdnd2.9.2.lib │ ├── tkdnd_compat.tcl │ ├── tkdnd_generic.tcl │ ├── tkdnd_macosx.tcl │ ├── tkdnd_unix.tcl │ ├── tkdnd_utils.tcl │ └── tkdnd_windows.tcl └── uvr_patch_version.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/README.md -------------------------------------------------------------------------------- /UVR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/UVR.py -------------------------------------------------------------------------------- /__pycache__/__version__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/__pycache__/__version__.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/__version__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/__pycache__/__version__.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/inference_MDX.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/__pycache__/inference_MDX.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/inference_MDX.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/__pycache__/inference_MDX.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/inference_demucs.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/__pycache__/inference_demucs.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/inference_demucs.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/__pycache__/inference_demucs.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/inference_v5.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/__pycache__/inference_v5.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/inference_v5.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/__pycache__/inference_v5.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/inference_v5_ensemble.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/__pycache__/inference_v5_ensemble.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/inference_v5_ensemble.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/__pycache__/inference_v5_ensemble.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /__version__.py: -------------------------------------------------------------------------------- 1 | VERSION = '5.3.0' 2 | -------------------------------------------------------------------------------- /data.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/data.pkl -------------------------------------------------------------------------------- /demucs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/demucs/__init__.py -------------------------------------------------------------------------------- /demucs/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/demucs/__main__.py -------------------------------------------------------------------------------- /demucs/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/demucs/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /demucs/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/demucs/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /demucs/__pycache__/apply.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/demucs/__pycache__/apply.cpython-38.pyc -------------------------------------------------------------------------------- /demucs/__pycache__/apply.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/demucs/__pycache__/apply.cpython-39.pyc -------------------------------------------------------------------------------- /demucs/__pycache__/demucs.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/demucs/__pycache__/demucs.cpython-38.pyc -------------------------------------------------------------------------------- /demucs/__pycache__/demucs.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/demucs/__pycache__/demucs.cpython-39.pyc -------------------------------------------------------------------------------- /demucs/__pycache__/hdemucs.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/demucs/__pycache__/hdemucs.cpython-38.pyc -------------------------------------------------------------------------------- /demucs/__pycache__/hdemucs.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/demucs/__pycache__/hdemucs.cpython-39.pyc -------------------------------------------------------------------------------- /demucs/__pycache__/model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/demucs/__pycache__/model.cpython-38.pyc -------------------------------------------------------------------------------- /demucs/__pycache__/model.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/demucs/__pycache__/model.cpython-39.pyc -------------------------------------------------------------------------------- /demucs/__pycache__/model_v2.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/demucs/__pycache__/model_v2.cpython-38.pyc -------------------------------------------------------------------------------- /demucs/__pycache__/model_v2.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/demucs/__pycache__/model_v2.cpython-39.pyc -------------------------------------------------------------------------------- /demucs/__pycache__/pretrained.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/demucs/__pycache__/pretrained.cpython-38.pyc -------------------------------------------------------------------------------- /demucs/__pycache__/pretrained.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/demucs/__pycache__/pretrained.cpython-39.pyc -------------------------------------------------------------------------------- /demucs/__pycache__/repo.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/demucs/__pycache__/repo.cpython-38.pyc -------------------------------------------------------------------------------- /demucs/__pycache__/repo.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/demucs/__pycache__/repo.cpython-39.pyc -------------------------------------------------------------------------------- /demucs/__pycache__/spec.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/demucs/__pycache__/spec.cpython-38.pyc -------------------------------------------------------------------------------- /demucs/__pycache__/spec.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/demucs/__pycache__/spec.cpython-39.pyc -------------------------------------------------------------------------------- /demucs/__pycache__/states.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/demucs/__pycache__/states.cpython-38.pyc -------------------------------------------------------------------------------- /demucs/__pycache__/states.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/demucs/__pycache__/states.cpython-39.pyc -------------------------------------------------------------------------------- /demucs/__pycache__/tasnet_v2.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/demucs/__pycache__/tasnet_v2.cpython-38.pyc -------------------------------------------------------------------------------- /demucs/__pycache__/tasnet_v2.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/demucs/__pycache__/tasnet_v2.cpython-39.pyc -------------------------------------------------------------------------------- /demucs/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/demucs/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /demucs/__pycache__/utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/demucs/__pycache__/utils.cpython-39.pyc -------------------------------------------------------------------------------- /demucs/apply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/demucs/apply.py -------------------------------------------------------------------------------- /demucs/demucs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/demucs/demucs.py -------------------------------------------------------------------------------- /demucs/hdemucs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/demucs/hdemucs.py -------------------------------------------------------------------------------- /demucs/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/demucs/model.py -------------------------------------------------------------------------------- /demucs/model_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/demucs/model_v2.py -------------------------------------------------------------------------------- /demucs/pretrained.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/demucs/pretrained.py -------------------------------------------------------------------------------- /demucs/repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/demucs/repo.py -------------------------------------------------------------------------------- /demucs/spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/demucs/spec.py -------------------------------------------------------------------------------- /demucs/states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/demucs/states.py -------------------------------------------------------------------------------- /demucs/tasnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/demucs/tasnet.py -------------------------------------------------------------------------------- /demucs/tasnet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/demucs/tasnet_v2.py -------------------------------------------------------------------------------- /demucs/utils-.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/demucs/utils-.py -------------------------------------------------------------------------------- /demucs/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/demucs/utils.py -------------------------------------------------------------------------------- /img/File.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/img/File.png -------------------------------------------------------------------------------- /img/GUI-Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/img/GUI-Icon.png -------------------------------------------------------------------------------- /img/UVR-Icon-v2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/img/UVR-Icon-v2.gif -------------------------------------------------------------------------------- /img/UVR-Icon-v2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/img/UVR-Icon-v2.ico -------------------------------------------------------------------------------- /img/UVR-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/img/UVR-banner.png -------------------------------------------------------------------------------- /img/UVR_Demucs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/img/UVR_Demucs.png -------------------------------------------------------------------------------- /img/UVR_v54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/img/UVR_v54.png -------------------------------------------------------------------------------- /img/UVRv5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/img/UVRv5.png -------------------------------------------------------------------------------- /img/credits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/img/credits.png -------------------------------------------------------------------------------- /img/demucs_opt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/img/demucs_opt.png -------------------------------------------------------------------------------- /img/donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/img/donate.png -------------------------------------------------------------------------------- /img/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/img/download.png -------------------------------------------------------------------------------- /img/ense_opt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/img/ense_opt.png -------------------------------------------------------------------------------- /img/gen_opt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/img/gen_opt.png -------------------------------------------------------------------------------- /img/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/img/help.png -------------------------------------------------------------------------------- /img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/img/icon.png -------------------------------------------------------------------------------- /img/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/img/key.png -------------------------------------------------------------------------------- /img/mdx_opt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/img/mdx_opt.png -------------------------------------------------------------------------------- /img/splash.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/img/splash.bmp -------------------------------------------------------------------------------- /img/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/img/stop.png -------------------------------------------------------------------------------- /img/user_ens_opt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/img/user_ens_opt.png -------------------------------------------------------------------------------- /img/vr_opt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/img/vr_opt.png -------------------------------------------------------------------------------- /inference_MDX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/inference_MDX.py -------------------------------------------------------------------------------- /inference_demucs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/inference_demucs.py -------------------------------------------------------------------------------- /inference_v5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/inference_v5.py -------------------------------------------------------------------------------- /inference_v5_ensemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/inference_v5_ensemble.py -------------------------------------------------------------------------------- /lib_v5/__pycache__/dataset.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/__pycache__/dataset.cpython-37.pyc -------------------------------------------------------------------------------- /lib_v5/__pycache__/dataset.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/__pycache__/dataset.cpython-38.pyc -------------------------------------------------------------------------------- /lib_v5/__pycache__/dataset.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/__pycache__/dataset.cpython-39.pyc -------------------------------------------------------------------------------- /lib_v5/__pycache__/filelist.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/__pycache__/filelist.cpython-38.pyc -------------------------------------------------------------------------------- /lib_v5/__pycache__/filelist.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/__pycache__/filelist.cpython-39.pyc -------------------------------------------------------------------------------- /lib_v5/__pycache__/layers.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/__pycache__/layers.cpython-37.pyc -------------------------------------------------------------------------------- /lib_v5/__pycache__/layers.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/__pycache__/layers.cpython-39.pyc -------------------------------------------------------------------------------- /lib_v5/__pycache__/layers_123821KB.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/__pycache__/layers_123821KB.cpython-38.pyc -------------------------------------------------------------------------------- /lib_v5/__pycache__/layers_123821KB.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/__pycache__/layers_123821KB.cpython-39.pyc -------------------------------------------------------------------------------- /lib_v5/__pycache__/layers_537238KB.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/__pycache__/layers_537238KB.cpython-39.pyc -------------------------------------------------------------------------------- /lib_v5/__pycache__/model_param_init.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/__pycache__/model_param_init.cpython-38.pyc -------------------------------------------------------------------------------- /lib_v5/__pycache__/model_param_init.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/__pycache__/model_param_init.cpython-39.pyc -------------------------------------------------------------------------------- /lib_v5/__pycache__/nets.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/__pycache__/nets.cpython-37.pyc -------------------------------------------------------------------------------- /lib_v5/__pycache__/nets.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/__pycache__/nets.cpython-39.pyc -------------------------------------------------------------------------------- /lib_v5/__pycache__/nets_123812KB.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/__pycache__/nets_123812KB.cpython-39.pyc -------------------------------------------------------------------------------- /lib_v5/__pycache__/nets_123821KB.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/__pycache__/nets_123821KB.cpython-38.pyc -------------------------------------------------------------------------------- /lib_v5/__pycache__/nets_123821KB.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/__pycache__/nets_123821KB.cpython-39.pyc -------------------------------------------------------------------------------- /lib_v5/__pycache__/nets_537238KB.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/__pycache__/nets_537238KB.cpython-39.pyc -------------------------------------------------------------------------------- /lib_v5/__pycache__/spec_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/__pycache__/spec_utils.cpython-37.pyc -------------------------------------------------------------------------------- /lib_v5/__pycache__/spec_utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/__pycache__/spec_utils.cpython-38.pyc -------------------------------------------------------------------------------- /lib_v5/__pycache__/spec_utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/__pycache__/spec_utils.cpython-39.pyc -------------------------------------------------------------------------------- /lib_v5/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/dataset.py -------------------------------------------------------------------------------- /lib_v5/filelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/filelist.py -------------------------------------------------------------------------------- /lib_v5/filelists/download_codes/user_code.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib_v5/filelists/download_codes/user_code_download.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib_v5/filelists/download_lists/demucs_download_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/filelists/download_lists/demucs_download_list.txt -------------------------------------------------------------------------------- /lib_v5/filelists/download_lists/download_links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/filelists/download_lists/download_links.json -------------------------------------------------------------------------------- /lib_v5/filelists/download_lists/mdx_download_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/filelists/download_lists/mdx_download_list.txt -------------------------------------------------------------------------------- /lib_v5/filelists/download_lists/temp/temp.txt: -------------------------------------------------------------------------------- 1 | temp -------------------------------------------------------------------------------- /lib_v5/filelists/download_lists/vr_download_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/filelists/download_lists/vr_download_list.txt -------------------------------------------------------------------------------- /lib_v5/filelists/ensemble_list/mdx_demuc_en_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/filelists/ensemble_list/mdx_demuc_en_list.txt -------------------------------------------------------------------------------- /lib_v5/filelists/ensemble_list/vr_en_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/filelists/ensemble_list/vr_en_list.txt -------------------------------------------------------------------------------- /lib_v5/filelists/hashes/mdx_new_hashes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/filelists/hashes/mdx_new_hashes.txt -------------------------------------------------------------------------------- /lib_v5/filelists/hashes/mdx_new_inst_hashes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/filelists/hashes/mdx_new_inst_hashes.txt -------------------------------------------------------------------------------- /lib_v5/filelists/hashes/mdx_original_hashes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/filelists/hashes/mdx_original_hashes.txt -------------------------------------------------------------------------------- /lib_v5/filelists/model_cache/mdx_model_cache/cache_goes_here.txt: -------------------------------------------------------------------------------- 1 | cache_goes_here -------------------------------------------------------------------------------- /lib_v5/filelists/model_cache/vr_param_cache/cache_goes_here.txt: -------------------------------------------------------------------------------- 1 | cache_goes_here -------------------------------------------------------------------------------- /lib_v5/fonts/centurygothic/GOTHIC.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/fonts/centurygothic/GOTHIC.TTF -------------------------------------------------------------------------------- /lib_v5/fonts/centurygothic/GOTHICB.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/fonts/centurygothic/GOTHICB.TTF -------------------------------------------------------------------------------- /lib_v5/fonts/centurygothic/GOTHICBI.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/fonts/centurygothic/GOTHICBI.TTF -------------------------------------------------------------------------------- /lib_v5/fonts/centurygothic/GOTHICI.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/fonts/centurygothic/GOTHICI.TTF -------------------------------------------------------------------------------- /lib_v5/fonts/unispace/unispace.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/fonts/unispace/unispace.ttf -------------------------------------------------------------------------------- /lib_v5/fonts/unispace/unispace_bd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/fonts/unispace/unispace_bd.ttf -------------------------------------------------------------------------------- /lib_v5/fonts/unispace/unispace_bd_it.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/fonts/unispace/unispace_bd_it.ttf -------------------------------------------------------------------------------- /lib_v5/fonts/unispace/unispace_it.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/fonts/unispace/unispace_it.ttf -------------------------------------------------------------------------------- /lib_v5/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/layers.py -------------------------------------------------------------------------------- /lib_v5/layers_123812KB .py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/layers_123812KB .py -------------------------------------------------------------------------------- /lib_v5/layers_123821KB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/layers_123821KB.py -------------------------------------------------------------------------------- /lib_v5/layers_129605KB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/layers_129605KB.py -------------------------------------------------------------------------------- /lib_v5/layers_33966KB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/layers_33966KB.py -------------------------------------------------------------------------------- /lib_v5/layers_537227KB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/layers_537227KB.py -------------------------------------------------------------------------------- /lib_v5/layers_537238KB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/layers_537238KB.py -------------------------------------------------------------------------------- /lib_v5/model_param_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/model_param_init.py -------------------------------------------------------------------------------- /lib_v5/modelparams/1band_sr16000_hl512.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/modelparams/1band_sr16000_hl512.json -------------------------------------------------------------------------------- /lib_v5/modelparams/1band_sr32000_hl512.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/modelparams/1band_sr32000_hl512.json -------------------------------------------------------------------------------- /lib_v5/modelparams/1band_sr33075_hl384.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/modelparams/1band_sr33075_hl384.json -------------------------------------------------------------------------------- /lib_v5/modelparams/1band_sr44100_hl1024.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/modelparams/1band_sr44100_hl1024.json -------------------------------------------------------------------------------- /lib_v5/modelparams/1band_sr44100_hl256.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/modelparams/1band_sr44100_hl256.json -------------------------------------------------------------------------------- /lib_v5/modelparams/1band_sr44100_hl512.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/modelparams/1band_sr44100_hl512.json -------------------------------------------------------------------------------- /lib_v5/modelparams/1band_sr44100_hl512_cut.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/modelparams/1band_sr44100_hl512_cut.json -------------------------------------------------------------------------------- /lib_v5/modelparams/2band_32000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/modelparams/2band_32000.json -------------------------------------------------------------------------------- /lib_v5/modelparams/2band_44100_lofi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/modelparams/2band_44100_lofi.json -------------------------------------------------------------------------------- /lib_v5/modelparams/2band_48000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/modelparams/2band_48000.json -------------------------------------------------------------------------------- /lib_v5/modelparams/3band_44100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/modelparams/3band_44100.json -------------------------------------------------------------------------------- /lib_v5/modelparams/3band_44100_mid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/modelparams/3band_44100_mid.json -------------------------------------------------------------------------------- /lib_v5/modelparams/3band_44100_msb2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/modelparams/3band_44100_msb2.json -------------------------------------------------------------------------------- /lib_v5/modelparams/4band_44100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/modelparams/4band_44100.json -------------------------------------------------------------------------------- /lib_v5/modelparams/4band_44100_mid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/modelparams/4band_44100_mid.json -------------------------------------------------------------------------------- /lib_v5/modelparams/4band_44100_msb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/modelparams/4band_44100_msb.json -------------------------------------------------------------------------------- /lib_v5/modelparams/4band_44100_msb2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/modelparams/4band_44100_msb2.json -------------------------------------------------------------------------------- /lib_v5/modelparams/4band_44100_reverse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/modelparams/4band_44100_reverse.json -------------------------------------------------------------------------------- /lib_v5/modelparams/4band_44100_sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/modelparams/4band_44100_sw.json -------------------------------------------------------------------------------- /lib_v5/modelparams/4band_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/modelparams/4band_v2.json -------------------------------------------------------------------------------- /lib_v5/modelparams/4band_v2_sn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/modelparams/4band_v2_sn.json -------------------------------------------------------------------------------- /lib_v5/modelparams/Auto: -------------------------------------------------------------------------------- 1 | Auto -------------------------------------------------------------------------------- /lib_v5/modelparams/ensemble.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/modelparams/ensemble.json -------------------------------------------------------------------------------- /lib_v5/modelparamset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/modelparamset.py -------------------------------------------------------------------------------- /lib_v5/nets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/nets.py -------------------------------------------------------------------------------- /lib_v5/nets_123812KB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/nets_123812KB.py -------------------------------------------------------------------------------- /lib_v5/nets_123821KB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/nets_123821KB.py -------------------------------------------------------------------------------- /lib_v5/nets_129605KB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/nets_129605KB.py -------------------------------------------------------------------------------- /lib_v5/nets_33966KB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/nets_33966KB.py -------------------------------------------------------------------------------- /lib_v5/nets_537227KB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/nets_537227KB.py -------------------------------------------------------------------------------- /lib_v5/nets_537238KB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/nets_537238KB.py -------------------------------------------------------------------------------- /lib_v5/sox/MDX-NET_Noise_Profile_14_kHz.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sox/MDX-NET_Noise_Profile_14_kHz.prof -------------------------------------------------------------------------------- /lib_v5/sox/MDX-NET_Noise_Profile_17_kHz.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sox/MDX-NET_Noise_Profile_17_kHz.prof -------------------------------------------------------------------------------- /lib_v5/sox/MDX-NET_Noise_Profile_Full_Band.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sox/MDX-NET_Noise_Profile_Full_Band.prof -------------------------------------------------------------------------------- /lib_v5/sox/Sox goes here.txt: -------------------------------------------------------------------------------- 1 | Sox goes here -------------------------------------------------------------------------------- /lib_v5/sox/mdxnetnoisereduc.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sox/mdxnetnoisereduc.prof -------------------------------------------------------------------------------- /lib_v5/spec_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/spec_utils.py -------------------------------------------------------------------------------- /lib_v5/sv_ttk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/__init__.py -------------------------------------------------------------------------------- /lib_v5/sv_ttk/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /lib_v5/sv_ttk/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /lib_v5/sv_ttk/sun-valley.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/sun-valley.tcl -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark.tcl -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/arrow-down.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/arrow-right.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/arrow-up.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/button-accent-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/button-accent-disabled.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/button-accent-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/button-accent-hover.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/button-accent-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/button-accent-pressed.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/button-accent-rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/button-accent-rest.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/button-close-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/button-close-hover.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/button-close-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/button-close-pressed.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/button-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/button-disabled.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/button-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/button-hover.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/button-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/button-pressed.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/button-rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/button-rest.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/button-rest_alternative!!.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/button-rest_alternative!!.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/button-titlebar-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/button-titlebar-hover.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/button-titlebar-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/button-titlebar-pressed.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/card.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/check-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/check-disabled.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/check-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/check-hover.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/check-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/check-pressed.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/check-rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/check-rest.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/check-tri-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/check-tri-disabled.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/check-tri-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/check-tri-hover.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/check-tri-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/check-tri-pressed.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/check-tri-rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/check-tri-rest.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/check-unsel-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/check-unsel-disabled.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/check-unsel-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/check-unsel-hover.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/check-unsel-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/check-unsel-pressed.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/check-unsel-rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/check-unsel-rest.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/empty.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/entry-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/entry-disabled.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/entry-focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/entry-focus.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/entry-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/entry-hover.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/entry-invalid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/entry-invalid.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/entry-rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/entry-rest.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/notebook-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/notebook-border.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/notebook.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/progress-pbar-hor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/progress-pbar-hor.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/progress-pbar-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/progress-pbar-vert.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/progress-trough-hor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/progress-trough-hor.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/progress-trough-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/progress-trough-vert.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/radio-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/radio-disabled.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/radio-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/radio-hover.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/radio-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/radio-pressed.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/radio-rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/radio-rest.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/radio-unsel-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/radio-unsel-disabled.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/radio-unsel-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/radio-unsel-hover.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/radio-unsel-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/radio-unsel-pressed.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/radio-unsel-rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/radio-unsel-rest.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/scale-thumb-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/scale-thumb-disabled.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/scale-thumb-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/scale-thumb-hover.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/scale-thumb-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/scale-thumb-pressed.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/scale-thumb-rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/scale-thumb-rest.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/scale-trough-hor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/scale-trough-hor.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/scale-trough-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/scale-trough-vert.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/scroll-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/scroll-down.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/scroll-hor-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/scroll-hor-thumb.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/scroll-hor-trough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/scroll-hor-trough.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/scroll-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/scroll-left.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/scroll-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/scroll-right.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/scroll-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/scroll-up.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/scroll-vert-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/scroll-vert-thumb.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/scroll-vert-trough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/scroll-vert-trough.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/separator.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/sizegrip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/sizegrip.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/switch-off-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/switch-off-disabled.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/switch-off-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/switch-off-hover.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/switch-off-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/switch-off-pressed.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/switch-off-rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/switch-off-rest.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/switch-on-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/switch-on-disabled.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/switch-on-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/switch-on-hover.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/switch-on-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/switch-on-pressed.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/switch-on-rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/switch-on-rest.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/tab-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/tab-hover.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/tab-rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/tab-rest.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/tab-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/tab-selected.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/treeheading-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/treeheading-hover.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/treeheading-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/treeheading-pressed.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/dark/treeheading-rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/dark/treeheading-rest.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light.tcl -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/box-accent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/box-accent.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/box-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/box-basic.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/box-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/box-hover.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/box-invalid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/box-invalid.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/button-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/button-hover.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/card.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/check-accent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/check-accent.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/check-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/check-basic.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/check-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/check-hover.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/check-tri-accent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/check-tri-accent.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/check-tri-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/check-tri-basic.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/check-tri-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/check-tri-hover.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/circle-accent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/circle-accent.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/circle-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/circle-basic.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/circle-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/circle-hover.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/combo-button-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/combo-button-basic.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/combo-button-focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/combo-button-focus.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/combo-button-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/combo-button-hover.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/down-accent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/down-accent.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/down.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/empty.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/hor-accent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/hor-accent.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/hor-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/hor-basic.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/hor-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/hor-hover.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/notebook.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/off-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/off-basic.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/off-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/off-hover.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/on-accent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/on-accent.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/on-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/on-basic.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/on-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/on-hover.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/outline-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/outline-basic.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/outline-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/outline-hover.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/radio-accent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/radio-accent.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/radio-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/radio-basic.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/radio-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/radio-hover.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/radio-tri-accent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/radio-tri-accent.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/radio-tri-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/radio-tri-basic.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/radio-tri-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/radio-tri-hover.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/rect-accent-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/rect-accent-hover.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/rect-accent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/rect-accent.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/rect-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/rect-basic.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/rect-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/rect-hover.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/right.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/scale-hor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/scale-hor.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/scale-vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/scale-vert.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/separator.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/size.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/tab-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/tab-basic.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/tab-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/tab-disabled.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/tab-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/tab-hover.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/tick-hor-accent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/tick-hor-accent.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/tick-hor-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/tick-hor-basic.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/tick-hor-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/tick-hor-hover.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/tick-vert-accent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/tick-vert-accent.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/tick-vert-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/tick-vert-basic.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/tick-vert-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/tick-vert-hover.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/tree-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/tree-basic.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/tree-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/tree-pressed.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/up-accent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/up-accent.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/up.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/vert-accent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/vert-accent.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/vert-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/vert-basic.png -------------------------------------------------------------------------------- /lib_v5/sv_ttk/theme/light/vert-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/lib_v5/sv_ttk/theme/light/vert-hover.png -------------------------------------------------------------------------------- /main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/main.png -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/models.py -------------------------------------------------------------------------------- /models/Demucs_Models/demucs_models_go_here.txt: -------------------------------------------------------------------------------- 1 | demucs_models_go_here.txt -------------------------------------------------------------------------------- /models/Demucs_Models/v3_repo/demucs_models_go_here.txt: -------------------------------------------------------------------------------- 1 | demucs_models_go_here -------------------------------------------------------------------------------- /models/MDX_Net_Models/MDX-Net_Models_go_here.txt: -------------------------------------------------------------------------------- 1 | MDX-Net Models go here -------------------------------------------------------------------------------- /models/Main_Models/VR_Architecture_Models_go_here.txt: -------------------------------------------------------------------------------- 1 | VR_Architecture_Models_go_here -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/requirements.txt -------------------------------------------------------------------------------- /tkinterdnd2/TkinterDnD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/tkinterdnd2/TkinterDnD.py -------------------------------------------------------------------------------- /tkinterdnd2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/tkinterdnd2/__init__.py -------------------------------------------------------------------------------- /tkinterdnd2/__pycache__/TkinterDnD.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/tkinterdnd2/__pycache__/TkinterDnD.cpython-38.pyc -------------------------------------------------------------------------------- /tkinterdnd2/__pycache__/TkinterDnD.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/tkinterdnd2/__pycache__/TkinterDnD.cpython-39.pyc -------------------------------------------------------------------------------- /tkinterdnd2/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/tkinterdnd2/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /tkinterdnd2/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/tkinterdnd2/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /tkinterdnd2/tkdnd/linux64/libtkdnd2.9.2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/tkinterdnd2/tkdnd/linux64/libtkdnd2.9.2.so -------------------------------------------------------------------------------- /tkinterdnd2/tkdnd/linux64/pkgIndex.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/tkinterdnd2/tkdnd/linux64/pkgIndex.tcl -------------------------------------------------------------------------------- /tkinterdnd2/tkdnd/linux64/tkdnd.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/tkinterdnd2/tkdnd/linux64/tkdnd.tcl -------------------------------------------------------------------------------- /tkinterdnd2/tkdnd/linux64/tkdnd_compat.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/tkinterdnd2/tkdnd/linux64/tkdnd_compat.tcl -------------------------------------------------------------------------------- /tkinterdnd2/tkdnd/linux64/tkdnd_generic.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/tkinterdnd2/tkdnd/linux64/tkdnd_generic.tcl -------------------------------------------------------------------------------- /tkinterdnd2/tkdnd/linux64/tkdnd_macosx.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/tkinterdnd2/tkdnd/linux64/tkdnd_macosx.tcl -------------------------------------------------------------------------------- /tkinterdnd2/tkdnd/linux64/tkdnd_unix.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/tkinterdnd2/tkdnd/linux64/tkdnd_unix.tcl -------------------------------------------------------------------------------- /tkinterdnd2/tkdnd/linux64/tkdnd_utils.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/tkinterdnd2/tkdnd/linux64/tkdnd_utils.tcl -------------------------------------------------------------------------------- /tkinterdnd2/tkdnd/linux64/tkdnd_windows.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/tkinterdnd2/tkdnd/linux64/tkdnd_windows.tcl -------------------------------------------------------------------------------- /tkinterdnd2/tkdnd/osx64/libtkdnd2.9.2.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/tkinterdnd2/tkdnd/osx64/libtkdnd2.9.2.dylib -------------------------------------------------------------------------------- /tkinterdnd2/tkdnd/osx64/pkgIndex.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/tkinterdnd2/tkdnd/osx64/pkgIndex.tcl -------------------------------------------------------------------------------- /tkinterdnd2/tkdnd/osx64/tkdnd.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/tkinterdnd2/tkdnd/osx64/tkdnd.tcl -------------------------------------------------------------------------------- /tkinterdnd2/tkdnd/osx64/tkdnd_compat.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/tkinterdnd2/tkdnd/osx64/tkdnd_compat.tcl -------------------------------------------------------------------------------- /tkinterdnd2/tkdnd/osx64/tkdnd_generic.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/tkinterdnd2/tkdnd/osx64/tkdnd_generic.tcl -------------------------------------------------------------------------------- /tkinterdnd2/tkdnd/osx64/tkdnd_macosx.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/tkinterdnd2/tkdnd/osx64/tkdnd_macosx.tcl -------------------------------------------------------------------------------- /tkinterdnd2/tkdnd/osx64/tkdnd_unix.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/tkinterdnd2/tkdnd/osx64/tkdnd_unix.tcl -------------------------------------------------------------------------------- /tkinterdnd2/tkdnd/osx64/tkdnd_utils.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/tkinterdnd2/tkdnd/osx64/tkdnd_utils.tcl -------------------------------------------------------------------------------- /tkinterdnd2/tkdnd/osx64/tkdnd_windows.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/tkinterdnd2/tkdnd/osx64/tkdnd_windows.tcl -------------------------------------------------------------------------------- /tkinterdnd2/tkdnd/win64/libtkdnd2.9.2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/tkinterdnd2/tkdnd/win64/libtkdnd2.9.2.dll -------------------------------------------------------------------------------- /tkinterdnd2/tkdnd/win64/pkgIndex.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/tkinterdnd2/tkdnd/win64/pkgIndex.tcl -------------------------------------------------------------------------------- /tkinterdnd2/tkdnd/win64/tkdnd.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/tkinterdnd2/tkdnd/win64/tkdnd.tcl -------------------------------------------------------------------------------- /tkinterdnd2/tkdnd/win64/tkdnd2.9.2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/tkinterdnd2/tkdnd/win64/tkdnd2.9.2.lib -------------------------------------------------------------------------------- /tkinterdnd2/tkdnd/win64/tkdnd_compat.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/tkinterdnd2/tkdnd/win64/tkdnd_compat.tcl -------------------------------------------------------------------------------- /tkinterdnd2/tkdnd/win64/tkdnd_generic.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/tkinterdnd2/tkdnd/win64/tkdnd_generic.tcl -------------------------------------------------------------------------------- /tkinterdnd2/tkdnd/win64/tkdnd_macosx.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/tkinterdnd2/tkdnd/win64/tkdnd_macosx.tcl -------------------------------------------------------------------------------- /tkinterdnd2/tkdnd/win64/tkdnd_unix.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/tkinterdnd2/tkdnd/win64/tkdnd_unix.tcl -------------------------------------------------------------------------------- /tkinterdnd2/tkdnd/win64/tkdnd_utils.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/tkinterdnd2/tkdnd/win64/tkdnd_utils.tcl -------------------------------------------------------------------------------- /tkinterdnd2/tkdnd/win64/tkdnd_windows.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NanKeRen2020/UVR5_Linux/HEAD/tkinterdnd2/tkdnd/win64/tkdnd_windows.tcl -------------------------------------------------------------------------------- /uvr_patch_version.txt: -------------------------------------------------------------------------------- 1 | UVR_Patch_7_25_2022_936 --------------------------------------------------------------------------------