|
import platform |
|
|
|
|
|
OPERATING_SYSTEM = platform.system() |
|
SYSTEM_ARCH = platform.platform() |
|
SYSTEM_PROC = platform.processor() |
|
ARM = 'arm' |
|
|
|
|
|
MAIN_FONT_NAME = "Century Gothic" |
|
|
|
|
|
VR_ARCH_TYPE = 'VR Arc' |
|
MDX_ARCH_TYPE = 'MDX-Net' |
|
DEMUCS_ARCH_TYPE = 'Demucs' |
|
VR_ARCH_PM = 'VR Architecture' |
|
ENSEMBLE_MODE = 'Ensemble Mode' |
|
ENSEMBLE_STEM_CHECK = 'Ensemble Stem' |
|
SECONDARY_MODEL = 'Secondary Model' |
|
DEMUCS_6_STEM_MODEL = 'htdemucs_6s' |
|
|
|
DEMUCS_V3_ARCH_TYPE = 'Demucs v3' |
|
DEMUCS_V4_ARCH_TYPE = 'Demucs v4' |
|
DEMUCS_NEWER_ARCH_TYPES = [DEMUCS_V3_ARCH_TYPE, DEMUCS_V4_ARCH_TYPE] |
|
|
|
DEMUCS_V1 = 'v1' |
|
DEMUCS_V2 = 'v2' |
|
DEMUCS_V3 = 'v3' |
|
DEMUCS_V4 = 'v4' |
|
|
|
DEMUCS_V1_TAG = 'v1 | ' |
|
DEMUCS_V2_TAG = 'v2 | ' |
|
DEMUCS_V3_TAG = 'v3 | ' |
|
DEMUCS_V4_TAG = 'v4 | ' |
|
DEMUCS_NEWER_TAGS = [DEMUCS_V3_TAG, DEMUCS_V4_TAG] |
|
|
|
DEMUCS_VERSION_MAPPER = { |
|
DEMUCS_V1:DEMUCS_V1_TAG, |
|
DEMUCS_V2:DEMUCS_V2_TAG, |
|
DEMUCS_V3:DEMUCS_V3_TAG, |
|
DEMUCS_V4:DEMUCS_V4_TAG} |
|
|
|
|
|
DOWNLOAD_FAILED = 'Download Failed' |
|
DOWNLOAD_STOPPED = 'Download Stopped' |
|
DOWNLOAD_COMPLETE = 'Download Complete' |
|
DOWNLOAD_UPDATE_COMPLETE = 'Update Download Complete' |
|
SETTINGS_MENU_EXIT = 'exit' |
|
NO_CONNECTION = 'No Internet Connection' |
|
VIP_SELECTION = 'VIP:' |
|
DEVELOPER_SELECTION = 'VIP:' |
|
NO_NEW_MODELS = 'All Available Models Downloaded' |
|
ENSEMBLE_PARTITION = ': ' |
|
NO_MODEL = 'No Model Selected' |
|
CHOOSE_MODEL = 'Choose Model' |
|
SINGLE_DOWNLOAD = 'Downloading Item 1/1...' |
|
DOWNLOADING_ITEM = 'Downloading Item' |
|
FILE_EXISTS = 'File already exists!' |
|
DOWNLOADING_UPDATE = 'Downloading Update...' |
|
DOWNLOAD_MORE = 'Download More Models' |
|
|
|
|
|
|
|
AUTO_SELECT = 'Auto' |
|
|
|
|
|
DOWNLOAD_CHECKS = "https://raw.githubusercontent.com/TRvlvr/application_data/main/filelists/download_checks.json" |
|
MDX_MODEL_DATA_LINK = "https://raw.githubusercontent.com/TRvlvr/application_data/main/mdx_model_data/model_data.json" |
|
VR_MODEL_DATA_LINK = "https://raw.githubusercontent.com/TRvlvr/application_data/main/vr_model_data/model_data.json" |
|
|
|
DEMUCS_MODEL_NAME_DATA_LINK = "https://raw.githubusercontent.com/TRvlvr/application_data/main/demucs_model_data/model_name_mapper.json" |
|
MDX_MODEL_NAME_DATA_LINK = "https://raw.githubusercontent.com/TRvlvr/application_data/main/mdx_model_data/model_name_mapper.json" |
|
|
|
DONATE_LINK_BMAC = "https://www.buymeacoffee.com/uvr5" |
|
DONATE_LINK_PATREON = "https://www.patreon.com/uvr" |
|
|
|
|
|
NORMAL_REPO = "https://github.com/TRvlvr/model_repo/releases/download/all_public_uvr_models/" |
|
UPDATE_REPO = "https://github.com/TRvlvr/model_repo/releases/download/uvr_update_patches/" |
|
|
|
UPDATE_MAC_ARM_REPO = "https://github.com/Anjok07/ultimatevocalremovergui/releases/download/v5.5.0/Ultimate_Vocal_Remover_v5_5_MacOS_arm64.dmg" |
|
UPDATE_MAC_X86_64_REPO = "https://github.com/Anjok07/ultimatevocalremovergui/releases/download/v5.5.0/Ultimate_Vocal_Remover_v5_5_MacOS_x86_64.dmg" |
|
UPDATE_LINUX_REPO = "https://github.com/Anjok07/ultimatevocalremovergui#linux-installation" |
|
UPDATE_REPO = "https://github.com/TRvlvr/model_repo/releases/download/uvr_update_patches/" |
|
|
|
ISSUE_LINK = 'https://github.com/Anjok07/ultimatevocalremovergui/issues/new' |
|
VIP_REPO = b'\xf3\xc2W\x19\x1foI)\xc2\xa9\xcc\xb67(Z\xf5',\ |
|
b'gAAAAABjQAIQ-NpNMMxMedpKHHb7ze_nqB05hw0YhbOy3pFzuzDrfqumn8_qvraxEoUpZC5ZXC0gGvfDxFMqyq9VWbYKlA67SUFI_wZB6QoVyGI581vs7kaGfUqlXHIdDS6tQ_U-BfjbEAK9EU_74-R2zXjz8Xzekw==' |
|
NO_CODE = 'incorrect_code' |
|
|
|
|
|
|
|
ONNX = '.onnx' |
|
CKPT = '.ckpt' |
|
YAML = '.yaml' |
|
PTH = '.pth' |
|
TH_EXT = '.th' |
|
JSON = '.json' |
|
|
|
|
|
|
|
START_PROCESSING = 'Start Processing' |
|
WAIT_PROCESSING = 'Please wait...' |
|
STOP_PROCESSING = 'Halting process, please wait...' |
|
LOADING_MODELS = 'Loading models...' |
|
|
|
|
|
|
|
MISSING_MODEL = 'missing' |
|
MODEL_PRESENT = 'present' |
|
|
|
UNRECOGNIZED_MODEL = 'Unrecognized Model Detected', ' is an unrecognized model.\n\n' + \ |
|
'Would you like to select the correct parameters before continuing?' |
|
|
|
STOP_PROCESS_CONFIRM = 'Confirmation', 'You are about to stop all active processes.\n\nAre you sure you wish to continue?' |
|
NO_ENSEMBLE_SELECTED = 'No Models Selected', 'Please select ensemble and try again.' |
|
PICKLE_CORRU = 'File Corrupted', 'Unable to load this ensemble.\n\n' + \ |
|
'Would you like to remove this ensemble from your list?' |
|
DELETE_ENS_ENTRY = 'Confirm Removal', 'Are you sure you want to remove this entry?' |
|
|
|
ALL_STEMS = 'All Stems' |
|
VOCAL_STEM = 'Vocals' |
|
INST_STEM = 'Instrumental' |
|
OTHER_STEM = 'Other' |
|
BASS_STEM = 'Bass' |
|
DRUM_STEM = 'Drums' |
|
GUITAR_STEM = 'Guitar' |
|
PIANO_STEM = 'Piano' |
|
SYNTH_STEM = 'Synthesizer' |
|
STRINGS_STEM = 'Strings' |
|
WOODWINDS_STEM = 'Woodwinds' |
|
BRASS_STEM = 'Brass' |
|
WIND_INST_STEM = 'Wind Inst' |
|
NO_OTHER_STEM = 'No Other' |
|
NO_BASS_STEM = 'No Bass' |
|
NO_DRUM_STEM = 'No Drums' |
|
NO_GUITAR_STEM = 'No Guitar' |
|
NO_PIANO_STEM = 'No Piano' |
|
NO_SYNTH_STEM = 'No Synthesizer' |
|
NO_STRINGS_STEM = 'No Strings' |
|
NO_WOODWINDS_STEM = 'No Woodwinds' |
|
NO_WIND_INST_STEM = 'No Wind Inst' |
|
NO_BRASS_STEM = 'No Brass' |
|
PRIMARY_STEM = 'Primary Stem' |
|
SECONDARY_STEM = 'Secondary Stem' |
|
|
|
|
|
DEMUCS_2_SOURCE = ["instrumental", "vocals"] |
|
DEMUCS_4_SOURCE = ["drums", "bass", "other", "vocals"] |
|
|
|
DEMUCS_2_SOURCE_MAPPER = { |
|
INST_STEM: 0, |
|
VOCAL_STEM: 1} |
|
|
|
DEMUCS_4_SOURCE_MAPPER = { |
|
BASS_STEM: 0, |
|
DRUM_STEM: 1, |
|
OTHER_STEM: 2, |
|
VOCAL_STEM: 3} |
|
|
|
DEMUCS_6_SOURCE_MAPPER = { |
|
BASS_STEM: 0, |
|
DRUM_STEM: 1, |
|
OTHER_STEM: 2, |
|
VOCAL_STEM: 3, |
|
GUITAR_STEM:4, |
|
PIANO_STEM:5} |
|
|
|
DEMUCS_4_SOURCE_LIST = [BASS_STEM, DRUM_STEM, OTHER_STEM, VOCAL_STEM] |
|
DEMUCS_6_SOURCE_LIST = [BASS_STEM, DRUM_STEM, OTHER_STEM, VOCAL_STEM, GUITAR_STEM, PIANO_STEM] |
|
|
|
DEMUCS_UVR_MODEL = 'UVR_Model' |
|
|
|
CHOOSE_STEM_PAIR = 'Choose Stem Pair' |
|
|
|
STEM_SET_MENU = (VOCAL_STEM, |
|
INST_STEM, |
|
OTHER_STEM, |
|
BASS_STEM, |
|
DRUM_STEM, |
|
GUITAR_STEM, |
|
PIANO_STEM, |
|
SYNTH_STEM, |
|
STRINGS_STEM, |
|
WOODWINDS_STEM, |
|
BRASS_STEM, |
|
WIND_INST_STEM, |
|
NO_OTHER_STEM, |
|
NO_BASS_STEM, |
|
NO_DRUM_STEM, |
|
NO_GUITAR_STEM, |
|
NO_PIANO_STEM, |
|
NO_SYNTH_STEM, |
|
NO_STRINGS_STEM, |
|
NO_WOODWINDS_STEM, |
|
NO_BRASS_STEM, |
|
NO_WIND_INST_STEM) |
|
|
|
STEM_PAIR_MAPPER = { |
|
VOCAL_STEM: INST_STEM, |
|
INST_STEM: VOCAL_STEM, |
|
OTHER_STEM: NO_OTHER_STEM, |
|
BASS_STEM: NO_BASS_STEM, |
|
DRUM_STEM: NO_DRUM_STEM, |
|
GUITAR_STEM: NO_GUITAR_STEM, |
|
PIANO_STEM: NO_PIANO_STEM, |
|
SYNTH_STEM: NO_SYNTH_STEM, |
|
STRINGS_STEM: NO_STRINGS_STEM, |
|
WOODWINDS_STEM: NO_WOODWINDS_STEM, |
|
BRASS_STEM: NO_BRASS_STEM, |
|
WIND_INST_STEM: NO_WIND_INST_STEM, |
|
NO_OTHER_STEM: OTHER_STEM, |
|
NO_BASS_STEM: BASS_STEM, |
|
NO_DRUM_STEM: DRUM_STEM, |
|
NO_GUITAR_STEM: GUITAR_STEM, |
|
NO_PIANO_STEM: PIANO_STEM, |
|
NO_SYNTH_STEM: SYNTH_STEM, |
|
NO_STRINGS_STEM: STRINGS_STEM, |
|
NO_WOODWINDS_STEM: WOODWINDS_STEM, |
|
NO_BRASS_STEM: BRASS_STEM, |
|
NO_WIND_INST_STEM: WIND_INST_STEM, |
|
PRIMARY_STEM: SECONDARY_STEM} |
|
|
|
NON_ACCOM_STEMS = ( |
|
VOCAL_STEM, |
|
OTHER_STEM, |
|
BASS_STEM, |
|
DRUM_STEM, |
|
GUITAR_STEM, |
|
PIANO_STEM, |
|
SYNTH_STEM, |
|
STRINGS_STEM, |
|
WOODWINDS_STEM, |
|
BRASS_STEM, |
|
WIND_INST_STEM) |
|
|
|
MDX_NET_FREQ_CUT = [VOCAL_STEM, INST_STEM] |
|
|
|
DEMUCS_4_STEM_OPTIONS = (ALL_STEMS, VOCAL_STEM, OTHER_STEM, BASS_STEM, DRUM_STEM) |
|
DEMUCS_6_STEM_OPTIONS = (ALL_STEMS, VOCAL_STEM, OTHER_STEM, BASS_STEM, DRUM_STEM, GUITAR_STEM, PIANO_STEM) |
|
DEMUCS_2_STEM_OPTIONS = (VOCAL_STEM, INST_STEM) |
|
DEMUCS_4_STEM_CHECK = (OTHER_STEM, BASS_STEM, DRUM_STEM) |
|
|
|
|
|
|
|
VOCAL_PAIR = f'{VOCAL_STEM}/{INST_STEM}' |
|
INST_PAIR = f'{INST_STEM}/{VOCAL_STEM}' |
|
OTHER_PAIR = f'{OTHER_STEM}/{NO_OTHER_STEM}' |
|
DRUM_PAIR = f'{DRUM_STEM}/{NO_DRUM_STEM}' |
|
BASS_PAIR = f'{BASS_STEM}/{NO_BASS_STEM}' |
|
FOUR_STEM_ENSEMBLE = '4 Stem Ensemble' |
|
|
|
ENSEMBLE_MAIN_STEM = (CHOOSE_STEM_PAIR, VOCAL_PAIR, OTHER_PAIR, DRUM_PAIR, BASS_PAIR, FOUR_STEM_ENSEMBLE) |
|
|
|
MIN_SPEC = 'Min Spec' |
|
MAX_SPEC = 'Max Spec' |
|
AUDIO_AVERAGE = 'Average' |
|
|
|
MAX_MIN = f'{MAX_SPEC}/{MIN_SPEC}' |
|
MAX_MAX = f'{MAX_SPEC}/{MAX_SPEC}' |
|
MAX_AVE = f'{MAX_SPEC}/{AUDIO_AVERAGE}' |
|
MIN_MAX = f'{MIN_SPEC}/{MAX_SPEC}' |
|
MIN_MIX = f'{MIN_SPEC}/{MIN_SPEC}' |
|
MIN_AVE = f'{MIN_SPEC}/{AUDIO_AVERAGE}' |
|
AVE_MAX = f'{AUDIO_AVERAGE}/{MAX_SPEC}' |
|
AVE_MIN = f'{AUDIO_AVERAGE}/{MIN_SPEC}' |
|
AVE_AVE = f'{AUDIO_AVERAGE}/{AUDIO_AVERAGE}' |
|
|
|
ENSEMBLE_TYPE = (MAX_MIN, MAX_MAX, MAX_AVE, MIN_MAX, MIN_MIX, MIN_AVE, AVE_MAX, AVE_MIN, AVE_AVE) |
|
ENSEMBLE_TYPE_4_STEM = (MAX_SPEC, MIN_SPEC, AUDIO_AVERAGE) |
|
|
|
BATCH_MODE = 'Batch Mode' |
|
BETA_VERSION = 'BETA' |
|
DEF_OPT = 'Default' |
|
|
|
CHUNKS = (AUTO_SELECT, '1', '5', '10', '15', '20', |
|
'25', '30', '35', '40', '45', '50', |
|
'55', '60', '65', '70', '75', '80', |
|
'85', '90', '95', 'Full') |
|
|
|
BATCH_SIZE = (DEF_OPT, '2', '3', '4', '5', |
|
'6', '7', '8', '9', '10') |
|
|
|
VOL_COMPENSATION = (AUTO_SELECT, '1.035', '1.08') |
|
|
|
MARGIN_SIZE = ('44100', '22050', '11025') |
|
|
|
AUDIO_TOOLS = 'Audio Tools' |
|
|
|
MANUAL_ENSEMBLE = 'Manual Ensemble' |
|
TIME_STRETCH = 'Time Stretch' |
|
CHANGE_PITCH = 'Change Pitch' |
|
ALIGN_INPUTS = 'Align Inputs' |
|
|
|
if OPERATING_SYSTEM == 'Windows' or OPERATING_SYSTEM == 'Darwin': |
|
AUDIO_TOOL_OPTIONS = (MANUAL_ENSEMBLE, TIME_STRETCH, CHANGE_PITCH, ALIGN_INPUTS) |
|
else: |
|
AUDIO_TOOL_OPTIONS = (MANUAL_ENSEMBLE, ALIGN_INPUTS) |
|
|
|
MANUAL_ENSEMBLE_OPTIONS = (MIN_SPEC, MAX_SPEC, AUDIO_AVERAGE) |
|
|
|
PROCESS_METHODS = (VR_ARCH_PM, MDX_ARCH_TYPE, DEMUCS_ARCH_TYPE, ENSEMBLE_MODE, AUDIO_TOOLS) |
|
|
|
DEMUCS_SEGMENTS = ('Default', '1', '5', '10', '15', '20', |
|
'25', '30', '35', '40', '45', '50', |
|
'55', '60', '65', '70', '75', '80', |
|
'85', '90', '95', '100') |
|
|
|
DEMUCS_SHIFTS = (0, 1, 2, 3, 4, 5, |
|
6, 7, 8, 9, 10, 11, |
|
12, 13, 14, 15, 16, 17, |
|
18, 19, 20) |
|
|
|
DEMUCS_OVERLAP = (0.25, 0.50, 0.75, 0.99) |
|
|
|
VR_AGGRESSION = (1, 2, 3, 4, 5, |
|
6, 7, 8, 9, 10, 11, |
|
12, 13, 14, 15, 16, 17, |
|
18, 19, 20) |
|
|
|
VR_WINDOW = ('320', '512','1024') |
|
VR_CROP = ('256', '512', '1024') |
|
POST_PROCESSES_THREASHOLD_VALUES = ('0.1', '0.2', '0.3') |
|
|
|
MDX_POP_PRO = ('MDX-NET_Noise_Profile_14_kHz', 'MDX-NET_Noise_Profile_17_kHz', 'MDX-NET_Noise_Profile_Full_Band') |
|
MDX_POP_STEMS = ('Vocals', 'Instrumental', 'Other', 'Drums', 'Bass') |
|
MDX_POP_NFFT = ('4096', '5120', '6144', '7680', '8192', '16384') |
|
MDX_POP_DIMF = ('2048', '3072', '4096') |
|
|
|
SAVE_ENSEMBLE = 'Save Ensemble' |
|
CLEAR_ENSEMBLE = 'Clear Selection(s)' |
|
MENU_SEPARATOR = 35*'•' |
|
CHOOSE_ENSEMBLE_OPTION = 'Choose Option' |
|
|
|
INVALID_ENTRY = 'Invalid Input, Please Try Again' |
|
ENSEMBLE_INPUT_RULE = '1. Only letters, numbers, spaces, and dashes allowed.\n2. No dashes or spaces at the start or end of input.' |
|
|
|
ENSEMBLE_OPTIONS = (SAVE_ENSEMBLE, CLEAR_ENSEMBLE) |
|
ENSEMBLE_CHECK = 'ensemble check' |
|
|
|
SELECT_SAVED_ENSEMBLE = 'Select Saved Ensemble' |
|
SELECT_SAVED_SETTING = 'Select Saved Setting' |
|
ENSEMBLE_OPTION = "Ensemble Customization Options" |
|
MDX_OPTION = "Advanced MDX-Net Options" |
|
DEMUCS_OPTION = "Advanced Demucs Options" |
|
VR_OPTION = "Advanced VR Options" |
|
HELP_OPTION = "Open Information Guide" |
|
ERROR_OPTION = "Open Error Log" |
|
VERIFY_BEGIN = 'Verifying file ' |
|
SAMPLE_BEGIN = 'Creating Sample ' |
|
MODEL_MISSING_CHECK = 'Model Missing:' |
|
|
|
|
|
|
|
PLAYING_SONG = ": Playing" |
|
PAUSE_SONG = ": Paused" |
|
STOP_SONG = ": Stopped" |
|
|
|
SELECTED_VER = 'Selected' |
|
DETECTED_VER = 'Detected' |
|
|
|
SAMPLE_MODE_CHECKBOX = lambda v:f'Sample Mode ({v}s)' |
|
REMOVED_FILES = lambda r, e:f'Audio Input Verification Report:\n\nRemoved Files:\n\n{r}\n\nError Details:\n\n{e}' |
|
ADVANCED_SETTINGS = (ENSEMBLE_OPTION, MDX_OPTION, DEMUCS_OPTION, VR_OPTION, HELP_OPTION, ERROR_OPTION) |
|
|
|
WAV = 'WAV' |
|
FLAC = 'FLAC' |
|
MP3 = 'MP3' |
|
|
|
MP3_BIT_RATES = ('96k', '128k', '160k', '224k', '256k', '320k') |
|
WAV_TYPE = ('PCM_U8', 'PCM_16', 'PCM_24', 'PCM_32', '32-bit Float', '64-bit Float') |
|
|
|
SELECT_SAVED_SET = 'Choose Option' |
|
SAVE_SETTINGS = 'Save Current Settings' |
|
RESET_TO_DEFAULT = 'Reset to Default' |
|
RESET_FULL_TO_DEFAULT = 'Reset to Default' |
|
RESET_PM_TO_DEFAULT = 'Reset All Application Settings to Default' |
|
|
|
SAVE_SET_OPTIONS = (SAVE_SETTINGS, RESET_TO_DEFAULT) |
|
|
|
TIME_PITCH = ('1.0', '2.0', '3.0', '4.0') |
|
TIME_TEXT = '_time_stretched' |
|
PITCH_TEXT = '_pitch_shifted' |
|
|
|
|
|
|
|
REG_PITCH = r'^[-+]?(1[0]|[0-9]([.][0-9]*)?)$' |
|
REG_TIME = r'^[+]?(1[0]|[0-9]([.][0-9]*)?)$' |
|
REG_COMPENSATION = r'\b^(1[0]|[0-9]([.][0-9]*)?|Auto|None)$\b' |
|
REG_THES_POSTPORCESS = r'\b^([0]([.][0-9]{0,6})?)$\b' |
|
REG_CHUNKS = r'\b^(200|1[0-9][0-9]|[1-9][0-9]?|Auto|Full)$\b' |
|
REG_CHUNKS_DEMUCS = r'\b^(200|1[0-9][0-9]|[1-9][0-9]?|Auto|Full)$\b' |
|
REG_MARGIN = r'\b^[0-9]*$\b' |
|
REG_SEGMENTS = r'\b^(200|1[0-9][0-9]|[1-9][0-9]?|Default)$\b' |
|
REG_SAVE_INPUT = r'\b^([a-zA-Z0-9 -]{0,25})$\b' |
|
REG_AGGRESSION = r'^[-+]?[0-9]\d*?$' |
|
REG_WINDOW = r'\b^[0-9]{0,4}$\b' |
|
REG_SHIFTS = r'\b^[0-9]*$\b' |
|
REG_BATCHES = r'\b^([0-9]*?|Default)$\b' |
|
REG_OVERLAP = r'\b^([0]([.][0-9]{0,6})?|None)$\b' |
|
|
|
|
|
|
|
VR_ARCH_SETTING_LOAD = 'Load for VR Arch' |
|
MDX_SETTING_LOAD = 'Load for MDX-Net' |
|
DEMUCS_SETTING_LOAD = 'Load for Demucs' |
|
ALL_ARCH_SETTING_LOAD = 'Load for Full Application' |
|
|
|
|
|
|
|
DEFAULT_DATA = { |
|
|
|
'chosen_process_method': MDX_ARCH_TYPE, |
|
'vr_model': CHOOSE_MODEL, |
|
'aggression_setting': 10, |
|
'window_size': 512, |
|
'batch_size': 4, |
|
'crop_size': 256, |
|
'is_tta': False, |
|
'is_output_image': False, |
|
'is_post_process': False, |
|
'is_high_end_process': False, |
|
'post_process_threshold': 0.2, |
|
'vr_voc_inst_secondary_model': NO_MODEL, |
|
'vr_other_secondary_model': NO_MODEL, |
|
'vr_bass_secondary_model': NO_MODEL, |
|
'vr_drums_secondary_model': NO_MODEL, |
|
'vr_is_secondary_model_activate': False, |
|
'vr_voc_inst_secondary_model_scale': 0.9, |
|
'vr_other_secondary_model_scale': 0.7, |
|
'vr_bass_secondary_model_scale': 0.5, |
|
'vr_drums_secondary_model_scale': 0.5, |
|
'demucs_model': CHOOSE_MODEL, |
|
'demucs_stems': ALL_STEMS, |
|
'segment': DEMUCS_SEGMENTS[0], |
|
'overlap': DEMUCS_OVERLAP[0], |
|
'shifts': 2, |
|
'chunks_demucs': CHUNKS[0], |
|
'margin_demucs': 44100, |
|
'is_chunk_demucs': False, |
|
'is_chunk_mdxnet': False, |
|
'is_primary_stem_only_Demucs': False, |
|
'is_secondary_stem_only_Demucs': False, |
|
'is_split_mode': True, |
|
'is_demucs_combine_stems': True, |
|
'demucs_voc_inst_secondary_model': NO_MODEL, |
|
'demucs_other_secondary_model': NO_MODEL, |
|
'demucs_bass_secondary_model': NO_MODEL, |
|
'demucs_drums_secondary_model': NO_MODEL, |
|
'demucs_is_secondary_model_activate': False, |
|
'demucs_voc_inst_secondary_model_scale': 0.9, |
|
'demucs_other_secondary_model_scale': 0.7, |
|
'demucs_bass_secondary_model_scale': 0.5, |
|
'demucs_drums_secondary_model_scale': 0.5, |
|
'demucs_stems': ALL_STEMS, |
|
'demucs_pre_proc_model': NO_MODEL, |
|
'is_demucs_pre_proc_model_activate': False, |
|
'is_demucs_pre_proc_model_inst_mix': False, |
|
'mdx_net_model': CHOOSE_MODEL, |
|
'chunks': CHUNKS[0], |
|
'margin': 44100, |
|
'compensate': AUTO_SELECT, |
|
'is_denoise': False, |
|
'is_invert_spec': False, |
|
'is_mixer_mode': False, |
|
'mdx_batch_size': DEF_OPT, |
|
'mdx_voc_inst_secondary_model': NO_MODEL, |
|
'mdx_other_secondary_model': NO_MODEL, |
|
'mdx_bass_secondary_model': NO_MODEL, |
|
'mdx_drums_secondary_model': NO_MODEL, |
|
'mdx_is_secondary_model_activate': False, |
|
'mdx_voc_inst_secondary_model_scale': 0.9, |
|
'mdx_other_secondary_model_scale': 0.7, |
|
'mdx_bass_secondary_model_scale': 0.5, |
|
'mdx_drums_secondary_model_scale': 0.5, |
|
'is_save_all_outputs_ensemble': True, |
|
'is_append_ensemble_name': False, |
|
'chosen_audio_tool': AUDIO_TOOL_OPTIONS[0], |
|
'choose_algorithm': MANUAL_ENSEMBLE_OPTIONS[0], |
|
'time_stretch_rate': 2.0, |
|
'pitch_rate': 2.0, |
|
'is_gpu_conversion': False, |
|
'is_primary_stem_only': False, |
|
'is_secondary_stem_only': False, |
|
'is_testing_audio': False, |
|
'is_add_model_name': False, |
|
'is_accept_any_input': False, |
|
'is_task_complete': False, |
|
'is_normalization': False, |
|
'is_create_model_folder': False, |
|
'mp3_bit_set': '320k', |
|
'save_format': WAV, |
|
'wav_type_set': 'PCM_16', |
|
'user_code': '', |
|
'export_path': '', |
|
'input_paths': [], |
|
'lastDir': None, |
|
'export_path': '', |
|
'model_hash_table': None, |
|
'help_hints_var': False, |
|
'model_sample_mode': False, |
|
'model_sample_mode_duration': 30 |
|
} |
|
|
|
SETTING_CHECK = ('vr_model', |
|
'aggression_setting', |
|
'window_size', |
|
'batch_size', |
|
'crop_size', |
|
'is_tta', |
|
'is_output_image', |
|
'is_post_process', |
|
'is_high_end_process', |
|
'post_process_threshold', |
|
'vr_voc_inst_secondary_model', |
|
'vr_other_secondary_model', |
|
'vr_bass_secondary_model', |
|
'vr_drums_secondary_model', |
|
'vr_is_secondary_model_activate', |
|
'vr_voc_inst_secondary_model_scale', |
|
'vr_other_secondary_model_scale', |
|
'vr_bass_secondary_model_scale', |
|
'vr_drums_secondary_model_scale', |
|
'demucs_model', |
|
'segment', |
|
'overlap', |
|
'shifts', |
|
'chunks_demucs', |
|
'margin_demucs', |
|
'is_chunk_demucs', |
|
'is_primary_stem_only_Demucs', |
|
'is_secondary_stem_only_Demucs', |
|
'is_split_mode', |
|
'is_demucs_combine_stems', |
|
'demucs_voc_inst_secondary_model', |
|
'demucs_other_secondary_model', |
|
'demucs_bass_secondary_model', |
|
'demucs_drums_secondary_model', |
|
'demucs_is_secondary_model_activate', |
|
'demucs_voc_inst_secondary_model_scale', |
|
'demucs_other_secondary_model_scale', |
|
'demucs_bass_secondary_model_scale', |
|
'demucs_drums_secondary_model_scale', |
|
'demucs_stems', |
|
'mdx_net_model', |
|
'chunks', |
|
'margin', |
|
'compensate', |
|
'is_denoise', |
|
'is_invert_spec', |
|
'mdx_batch_size', |
|
'mdx_voc_inst_secondary_model', |
|
'mdx_other_secondary_model', |
|
'mdx_bass_secondary_model', |
|
'mdx_drums_secondary_model', |
|
'mdx_is_secondary_model_activate', |
|
'mdx_voc_inst_secondary_model_scale', |
|
'mdx_other_secondary_model_scale', |
|
'mdx_bass_secondary_model_scale', |
|
'mdx_drums_secondary_model_scale', |
|
'is_save_all_outputs_ensemble', |
|
'is_append_ensemble_name', |
|
'chosen_audio_tool', |
|
'choose_algorithm', |
|
'time_stretch_rate', |
|
'pitch_rate', |
|
'is_primary_stem_only', |
|
'is_secondary_stem_only', |
|
'is_testing_audio', |
|
'is_add_model_name', |
|
"is_accept_any_input", |
|
'is_task_complete', |
|
'is_create_model_folder', |
|
'mp3_bit_set', |
|
'save_format', |
|
'wav_type_set', |
|
'user_code', |
|
'is_gpu_conversion', |
|
'is_normalization', |
|
'help_hints_var', |
|
'model_sample_mode', |
|
'model_sample_mode_duration') |
|
|
|
|
|
|
|
INVALID_INPUT = 'Invalid Input', 'The input is invalid.\n\nPlease verify the input still exists or is valid and try again.' |
|
INVALID_EXPORT = 'Invalid Export Directory', 'You have selected an invalid export directory.\n\nPlease make sure the selected directory still exists.' |
|
INVALID_ENSEMBLE = 'Not Enough Models', 'You must select 2 or more models to run ensemble.' |
|
INVALID_MODEL = 'No Model Chosen', 'You must select an model to continue.' |
|
MISSING_MODEL = 'Model Missing', 'The selected model is missing or not valid.' |
|
ERROR_OCCURED = 'Error Occured', '\n\nWould you like to open the error log for more details?\n' |
|
|
|
|
|
|
|
BACK_TO_MAIN_MENU = 'Back to Main Menu' |
|
|
|
|
|
|
|
INTERNAL_MODEL_ATT = 'Internal model attribute. \n\n ***Do not change this setting if you are unsure!***' |
|
STOP_HELP = 'Halts any running processes. \n A pop-up window will ask the user to confirm the action.' |
|
SETTINGS_HELP = 'Opens the main settings guide. This window includes the \"Download Center\"' |
|
COMMAND_TEXT_HELP = 'Provides information on the progress of the current process.' |
|
SAVE_CURRENT_SETTINGS_HELP = 'Allows the user to open any saved settings or save the current application settings.' |
|
CHUNKS_HELP = ('For MDX-Net, all values use the same amount of resources. Using chunks is no longer recommended.\n\n' + \ |
|
'• This option is now only for output quality.\n' + \ |
|
'• Some tracks may fare better depending on the value.\n' + \ |
|
'• Some tracks may fare worse depending on the value.\n' + \ |
|
'• Larger chunk sizes use will take less time to process.\n' +\ |
|
'• Smaller chunk sizes use will take more time to process.\n') |
|
CHUNKS_DEMUCS_HELP = ('This option allows the user to reduce (or increase) RAM or V-RAM usage.\n\n' + \ |
|
'• Smaller chunk sizes use less RAM or V-RAM but can also increase processing times.\n' + \ |
|
'• Larger chunk sizes use more RAM or V-RAM but can also reduce processing times.\n' + \ |
|
'• Selecting \"Auto\" calculates an appropriate chuck size based on how much RAM or V-RAM your system has.\n' + \ |
|
'• Selecting \"Full\" will process the track as one whole chunk. (not recommended)\n' + \ |
|
'• The default selection is \"Auto\".') |
|
MARGIN_HELP = 'Selects the frequency margins to slice the chunks from.\n\n• The recommended margin size is 44100.\n• Other values can give unpredictable results.' |
|
AGGRESSION_SETTING_HELP = ('This option allows you to set how strong the primary stem extraction will be.\n\n' + \ |
|
'• The range is 0-100.\n' + \ |
|
'• Higher values perform deeper extractions.\n' + \ |
|
'• The default is 10 for instrumental & vocal models.\n' + \ |
|
'• Values over 10 can result in muddy-sounding instrumentals for the non-vocal models') |
|
WINDOW_SIZE_HELP = ('The smaller your window size, the better your conversions will be. \nHowever, a smaller window means longer conversion times and heavier resource usage.\n\n' + \ |
|
'Breakdown of the selectable window size values:\n' + \ |
|
'• 1024 - Low conversion quality, shortest conversion time, low resource usage.\n' + \ |
|
'• 512 - Average conversion quality, average conversion time, normal resource usage.\n' + \ |
|
'• 320 - Better conversion quality.') |
|
DEMUCS_STEMS_HELP = ('Here, you can choose which stem to extract using the selected model.\n\n' +\ |
|
'Stem Selections:\n\n' +\ |
|
'• All Stems - Saves all of the stems the model is able to extract.\n' +\ |
|
'• Vocals - Pulls vocal stem only.\n' +\ |
|
'• Other - Pulls other stem only.\n' +\ |
|
'• Bass - Pulls bass stem only.\n' +\ |
|
'• Drums - Pulls drum stem only.\n') |
|
SEGMENT_HELP = ('This option allows the user to reduce (or increase) RAM or V-RAM usage.\n\n' + \ |
|
'• Smaller segment sizes use less RAM or V-RAM but can also increase processing times.\n' + \ |
|
'• Larger segment sizes use more RAM or V-RAM but can also reduce processing times.\n' + \ |
|
'• Selecting \"Default\" uses the recommended segment size.\n' + \ |
|
'• It is recommended that you not use segments with \"Chunking\".') |
|
ENSEMBLE_MAIN_STEM_HELP = 'Allows the user to select the type of stems they wish to ensemble.\n\nOptions:\n\n' +\ |
|
f'• {VOCAL_PAIR} - The primary stem will be the vocals and the secondary stem will be the the instrumental\n' +\ |
|
f'• {OTHER_PAIR} - The primary stem will be other and the secondary stem will be no other (the mixture without the \'other\' stem)\n' +\ |
|
f'• {BASS_PAIR} - The primary stem will be bass and the secondary stem will be no bass (the mixture without the \'bass\' stem)\n' +\ |
|
f'• {DRUM_PAIR} - The primary stem will be drums and the secondary stem will be no drums (the mixture without the \'drums\' stem)\n' +\ |
|
f'• {FOUR_STEM_ENSEMBLE} - This option will gather all the 4 stem Demucs models and ensemble all of the outputs.\n' |
|
ENSEMBLE_TYPE_HELP = 'Allows the user to select the ensemble algorithm to be used to generate the final output.\n\nExample & Other Note:\n\n' +\ |
|
f'• {MAX_MIN} - If this option is chosen, the primary stem outputs will be processed through \nthe \'Max Spec\' algorithm, and the secondary stem will be processed through the \'Min Spec\' algorithm.\n' +\ |
|
f'• Only a single algorithm will be shown when the \'4 Stem Ensemble\' option is chosen.\n\nAlgorithm Details:\n\n' +\ |
|
f'• {MAX_SPEC} - This algorithm combines the final results and generates the highest possible output from them.\nFor example, if this algorithm were processing vocal stems, you would get the fullest possible \n' +\ |
|
'result making the ensembled vocal stem sound cleaner. However, it might result in more unwanted artifacts.\n' +\ |
|
f'• {MIN_SPEC} - This algorithm combines the results and generates the lowest possible output from them.\nFor example, if this algorithm were processing instrumental stems, you would get the cleanest possible result \n' +\ |
|
'result, eliminating more unwanted artifacts. However, the result might also sound \'muddy\' and lack a fuller sound.\n' +\ |
|
f'• {AUDIO_AVERAGE} - This algorithm simply combines the results and averages all of them together. \n' |
|
ENSEMBLE_LISTBOX_HELP = 'List of the all the models available for the main stem pair selected.' |
|
IS_GPU_CONVERSION_HELP = ('When checked, the application will attempt to use your GPU (if you have one).\n' +\ |
|
'If you do not have a GPU but have this checked, the application will default to your CPU.\n\n' +\ |
|
'Note: CPU conversions are much slower than those processed through the GPU.') |
|
SAVE_STEM_ONLY_HELP = 'Allows the user to save only the selected stem.' |
|
IS_NORMALIZATION_HELP = 'Normalizes output to prevent clipping.' |
|
CROP_SIZE_HELP = '**Only compatible with select models only!**\n\n Setting should match training crop-size value. Leave as is if unsure.' |
|
IS_TTA_HELP = ('This option performs Test-Time-Augmentation to improve the separation quality.\n\n' +\ |
|
'Note: Having this selected will increase the time it takes to complete a conversion') |
|
IS_POST_PROCESS_HELP = ('This option can potentially identify leftover instrumental artifacts within the vocal outputs. \nThis option may improve the separation of some songs.\n\n' +\ |
|
'Note: Selecting this option can adversely affect the conversion process, depending on the track. Because of this, it is only recommended as a last resort.') |
|
IS_HIGH_END_PROCESS_HELP = 'The application will mirror the missing frequency range of the output.' |
|
SHIFTS_HELP = ('Performs multiple predictions with random shifts of the input and averages them.\n\n' +\ |
|
'• The higher number of shifts, the longer the prediction will take. \n- Not recommended unless you have a GPU.') |
|
OVERLAP_HELP = 'This option controls the amount of overlap between prediction windows (for Demucs one window is 10 seconds)' |
|
IS_CHUNK_DEMUCS_HELP = '• Enables \"Chunks\".\n• We recommend you not enable this option with \"Split Mode\" enabled or with the Demucs v4 Models.' |
|
IS_CHUNK_MDX_NET_HELP = '• Enables \"Chunks\".\n• Using this option for MDX-Net no longer effects RAM usage.\n• Having this enabled will effect output quality, for better or worse depending on the set value.' |
|
IS_SPLIT_MODE_HELP = ('• Enables \"Segments\". \n• We recommend you not enable this option with \"Enable Chunks\".\n' +\ |
|
'• Deselecting this option is only recommended for those with powerful PCs or if using \"Chunk\" mode instead.') |
|
IS_DEMUCS_COMBINE_STEMS_HELP = 'The application will create the secondary stem by combining the remaining stems \ninstead of inverting the primary stem with the mixture.' |
|
COMPENSATE_HELP = 'Compensates the audio of the primary stems to allow for a better secondary stem.' |
|
IS_DENOISE_HELP = '• This option removes a majority of the noise generated by the MDX-Net models.\n• The conversion will take nearly twice as long with this enabled.' |
|
CLEAR_CACHE_HELP = 'Clears any user selected model settings for previously unrecognized models.' |
|
IS_SAVE_ALL_OUTPUTS_ENSEMBLE_HELP = 'Enabling this option will keep all indivudual outputs generated by an ensemble.' |
|
IS_APPEND_ENSEMBLE_NAME_HELP = 'The application will append the ensemble name to the final output \nwhen this option is enabled.' |
|
DONATE_HELP = 'Takes the user to an external web-site to donate to this project!' |
|
IS_INVERT_SPEC_HELP = '• This option may produce a better secondary stem.\n• Inverts primary stem with mixture using spectragrams instead of wavforms.\n• This inversion method is slightly slower.' |
|
IS_MIXER_MODE_HELP = '• This option may improve separations for outputs from 4-stem models.\n• Might produce more noise.\n• This option might slow down separation time.' |
|
IS_TESTING_AUDIO_HELP = 'Appends a unique 10 digit number to output files so the user \ncan compare results with different settings.' |
|
IS_MODEL_TESTING_AUDIO_HELP = 'Appends the model name to output files so the user \ncan compare results with different settings.' |
|
IS_ACCEPT_ANY_INPUT_HELP = 'The application will accept any input when enabled, even if it does not have an audio format extension.\n\nThis is for experimental purposes, and having it enabled is not recommended.' |
|
IS_TASK_COMPLETE_HELP = 'When enabled, chimes will be heard when a process completes or fails.' |
|
IS_CREATE_MODEL_FOLDER_HELP = 'Two new directories will be generated for the outputs in \nthe export directory after each conversion.\n\n' +\ |
|
'• First directory - Named after the model.\n' +\ |
|
'• Second directory - Named after the track.\n\n' +\ |
|
'• Example: \n\n' +\ |
|
'─ Export Directory\n' +\ |
|
' └── First Directory\n' +\ |
|
' └── Second Directory\n' +\ |
|
' └── Output File(s)' |
|
DELETE_YOUR_SETTINGS_HELP = 'This menu contains your saved settings. You will be asked to \nconfirm if you wish to delete the selected setting.' |
|
SET_STEM_NAME_HELP = 'Choose the primary stem for the selected model.' |
|
MDX_DIM_T_SET_HELP = INTERNAL_MODEL_ATT |
|
MDX_DIM_F_SET_HELP = INTERNAL_MODEL_ATT |
|
MDX_N_FFT_SCALE_SET_HELP = 'Set the N_FFT size the model was trained with.' |
|
POPUP_COMPENSATE_HELP = f'Choose the appropriate voluem compensattion for the selected model\n\nReminder: {COMPENSATE_HELP}' |
|
VR_MODEL_PARAM_HELP = 'Choose the parameters needed to run the selected model.' |
|
CHOSEN_ENSEMBLE_HELP = 'Select saved enselble or save current ensemble.\n\nDefault Selections:\n\n• Save the current ensemble.\n• Clears all current model selections.' |
|
CHOSEN_PROCESS_METHOD_HELP = 'Here, you choose between different Al networks and algorithms to process your track.\n\n' +\ |
|
'There are five options:\n\n' +\ |
|
'• VR Architecture - These models use magnitude spectrograms for Source Separation.\n' +\ |
|
'• MDX-Net - These models use Hybrid Spectrogram/Waveform for Source Separation.\n' +\ |
|
'• Demucs v3 - These models use Hybrid Spectrogram/Waveform for Source Separation.\n' +\ |
|
'• Ensemble Mode - Here, you can get the best results from multiple models and networks.\n' +\ |
|
'• Audio Tools - These are additional tools for added convenience.' |
|
INPUT_FOLDER_ENTRY_HELP = 'Select Input:\n\nHere is where you select the audio files(s) you wish to process.' |
|
INPUT_FOLDER_ENTRY_HELP_2 = 'Input Option Menu:\n\nClick here to access the input option menu.' |
|
OUTPUT_FOLDER_ENTRY_HELP = 'Select Output:\n\nHere is where you select the directory where your processed files are to be saved.' |
|
INPUT_FOLDER_BUTTON_HELP = 'Open Input Folder Button: \n\nOpens the directory containing the selected input audio file(s).' |
|
OUTPUT_FOLDER_BUTTON_HELP = 'Open Output Folder Button: \n\nOpens the selected output folder.' |
|
CHOOSE_MODEL_HELP = 'Each process method comes with its own set of options and models.\n\nHere is where you choose the model associated with the selected process method.' |
|
FORMAT_SETTING_HELP = 'Save outputs as ' |
|
SECONDARY_MODEL_ACTIVATE_HELP = 'When enabled, the application will run an additional inference with the selected model(s) above.' |
|
SECONDARY_MODEL_HELP = 'Choose the secondary model associated with this stem you wish to run with the current process method.' |
|
SECONDARY_MODEL_SCALE_HELP = 'The scale determines how the final audio outputs will be averaged between the primary and secondary models.\n\nFor example:\n\n' +\ |
|
'• 10% - 10 percent of the main model result will be factored into the final result.\n' +\ |
|
'• 50% - The results from the main and secondary models will be averaged evenly.\n' +\ |
|
'• 90% - 90 percent of the main model result will be factored into the final result.' |
|
PRE_PROC_MODEL_ACTIVATE_HELP = 'The application will run an inference with the selected model above, pulling only the instrumental stem when enabled. \nFrom there, all of the non-vocal stems will be pulled from the generated instrumental.\n\nNotes:\n\n' +\ |
|
'• This option can significantly reduce vocal bleed within the non-vocal stems.\n' +\ |
|
'• It is only available in Demucs.\n' +\ |
|
'• It is only compatible with non-vocal and non-instrumental stem outputs.\n' +\ |
|
'• This will increase thetotal processing time.\n' +\ |
|
'• Only VR and MDX-Net Vocal or Instrumental models are selectable above.' |
|
|
|
AUDIO_TOOLS_HELP = 'Here, you choose between different audio tools to process your track.\n\n' +\ |
|
'• Manual Ensemble - You must have 2 or more files selected as your inputs. Allows the user to run their tracks through \nthe same algorithms used in Ensemble Mode.\n' +\ |
|
'• Align Inputs - You must have exactly 2 files selected as your inputs. The second input will be aligned with the first input.\n' +\ |
|
'• Time Stretch - The user can speed up or slow down the selected inputs.\n' +\ |
|
'• Change Pitch - The user can change the pitch for the selected inputs.\n' |
|
PRE_PROC_MODEL_INST_MIX_HELP = 'When enabled, the application will generate a third output without the selected stem and vocals.' |
|
MODEL_SAMPLE_MODE_HELP = 'Allows the user to process only part of a track to sample settings or a model without \nrunning a full conversion.\n\nNotes:\n\n' +\ |
|
'• The number in the parentheses is the current number of seconds the generated sample will be.\n' +\ |
|
'• You can choose the number of seconds to extract from the track in the \"Additional Settings\" menu.' |
|
|
|
POST_PROCESS_THREASHOLD_HELP = 'Allows the user to control the intensity of the Post_process option.\n\nNotes:\n\n' +\ |
|
'• Higher values potentially remove more artifacts. However, bleed might increase.\n' +\ |
|
'• Lower values limit artifact removal.' |
|
|
|
BATCH_SIZE_HELP = 'Specify the number of batches to be processed at a time.\n\nNotes:\n\n' +\ |
|
'• Higher values mean more RAM usage but slightly faster processing times.\n' +\ |
|
'• Lower values mean less RAM usage but slightly longer processing times.\n' +\ |
|
'• Batch size value has no effect on output quality.' |
|
|
|
|
|
|
|
STORAGE_ERROR = 'Insufficient Storage', 'There is not enough storage on main drive to continue. Your main drive must have at least 3 GB\'s of storage in order for this application function properly. \n\nPlease ensure your main drive has at least 3 GB\'s of storage and try again.\n\n' |
|
STORAGE_WARNING = 'Available Storage Low', 'Your main drive is running low on storage. Your main drive must have at least 3 GB\'s of storage in order for this application function properly.\n\n' |
|
CONFIRM_WARNING = '\nAre you sure you wish to continue?' |
|
PROCESS_FAILED = 'Process failed, please see error log\n' |
|
EXIT_PROCESS_ERROR = 'Active Process', 'Please stop the active process or wait for it to complete before you exit.' |
|
EXIT_HALTED_PROCESS_ERROR = 'Halting Process', 'Please wait for the application to finish halting the process before exiting.' |
|
EXIT_DOWNLOAD_ERROR = 'Active Download', 'Please stop the download or wait for it to complete before you exit.' |
|
SET_TO_DEFAULT_PROCESS_ERROR = 'Active Process', 'You cannot reset all of the application settings during an active process.' |
|
SET_TO_ANY_PROCESS_ERROR = 'Active Process', 'You cannot reset the application settings during an active process.' |
|
RESET_ALL_TO_DEFAULT_WARNING = 'Reset Settings Confirmation', 'All application settings will be set to factory default.\n\nAre you sure you wish to continue?' |
|
AUDIO_VERIFICATION_CHECK = lambda i, e:f'++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nBroken File Removed: \n\n{i}\n\nError Details:\n\n{e}\n++++++++++++++++++++++++++++++++++++++++++++++++++++' |
|
INVALID_ONNX_MODEL_ERROR = 'Invalid Model', 'The file selected is not a valid MDX-Net model. Please see the error log for more information.' |
|
|
|
|
|
|
|
|
|
LOADING_MODEL = 'Loading model...' |
|
INFERENCE_STEP_1 = 'Running inference...' |
|
INFERENCE_STEP_1_SEC = 'Running inference (secondary model)...' |
|
INFERENCE_STEP_1_4_STEM = lambda stem:f'Running inference (secondary model for {stem})...' |
|
INFERENCE_STEP_1_PRE = 'Running inference (pre-process model)...' |
|
INFERENCE_STEP_2_PRE = lambda pm, m:f'Loading pre-process model ({pm}: {m})...' |
|
INFERENCE_STEP_2_SEC = lambda pm, m:f'Loading secondary model ({pm}: {m})...' |
|
INFERENCE_STEP_2_SEC_CACHED_MODOEL = lambda pm, m:f'Secondary model ({pm}: {m}) cache loaded.\n' |
|
INFERENCE_STEP_2_PRE_CACHED_MODOEL = lambda pm, m:f'Pre-process model ({pm}: {m}) cache loaded.\n' |
|
INFERENCE_STEP_2_SEC_CACHED = 'Loading cached secondary model source(s)... Done!\n' |
|
INFERENCE_STEP_2_PRIMARY_CACHED = 'Model cache loaded.\n' |
|
INFERENCE_STEP_2 = 'Inference complete.' |
|
SAVING_STEM = 'Saving ', ' stem...' |
|
SAVING_ALL_STEMS = 'Saving all stems...' |
|
ENSEMBLING_OUTPUTS = 'Ensembling outputs...' |
|
DONE = ' Done!\n' |
|
ENSEMBLES_SAVED = 'Ensembled outputs saved!\n\n' |
|
NEW_LINES = "\n\n" |
|
NEW_LINE = "\n" |
|
NO_LINE = '' |
|
|
|
|
|
|
|
MAIN_ROW_Y = -15, -17 |
|
MAIN_ROW_X = -4, 21 |
|
MAIN_ROW_WIDTH = -53 |
|
MAIN_ROW_2_Y = -15, -17 |
|
MAIN_ROW_2_X = -28, 1 |
|
CHECK_BOX_Y = 0 |
|
CHECK_BOX_X = 20 |
|
CHECK_BOX_WIDTH = -50 |
|
CHECK_BOX_HEIGHT = 2 |
|
LEFT_ROW_WIDTH = -10 |
|
LABEL_HEIGHT = -5 |
|
OPTION_HEIGHT = 7 |
|
LOW_MENU_Y = 18, 16 |
|
FFMPEG_EXT = (".aac", ".aiff", ".alac" ,".flac", ".FLAC", ".mov", ".mp4", ".MP4", |
|
".m4a", ".M4A", ".mp2", ".mp3", "MP3", ".mpc", ".mpc8", |
|
".mpeg", ".ogg", ".OGG", ".tta", ".wav", ".wave", ".WAV", ".WAVE", ".wma", ".webm", ".eac3", ".mkv") |
|
|
|
FFMPEG_MORE_EXT = (".aa", ".aac", ".ac3", ".aiff", ".alac", ".avi", ".f4v",".flac", ".flic", ".flv", |
|
".m4v",".mlv", ".mov", ".mp4", ".m4a", ".mp2", ".mp3", ".mp4", ".mpc", ".mpc8", |
|
".mpeg", ".ogg", ".tta", ".tty", ".vcd", ".wav", ".wma") |
|
ANY_EXT = "" |
|
|
|
|
|
|
|
VOCAL_PAIR_PLACEMENT = 1, 2, 3, 4 |
|
OTHER_PAIR_PLACEMENT = 5, 6, 7, 8 |
|
BASS_PAIR_PLACEMENT = 9, 10, 11, 12 |
|
DRUMS_PAIR_PLACEMENT = 13, 14, 15, 16 |
|
|
|
|
|
|
|
DOUBLE_BRACKET = "} {" |
|
RIGHT_BRACKET = "}" |
|
LEFT_BRACKET = "{" |
|
|
|
|
|
|
|
VR_PLACEMENT_TEXT = 'Place models in \"models/VR_Models\" directory.' |
|
MDX_PLACEMENT_TEXT = 'Place models in \"models/MDX_Net_Models\" directory.' |
|
DEMUCS_PLACEMENT_TEXT = 'Place models in \"models/Demucs_Models\" directory.' |
|
DEMUCS_V3_V4_PLACEMENT_TEXT = 'Place items in \"models/Demucs_Models/v3_v4_repo\" directory.' |
|
|
|
FULL_DOWNLOAD_LIST_VR = { |
|
"VR Arch Single Model v5: 1_HP-UVR": "1_HP-UVR.pth", |
|
"VR Arch Single Model v5: 2_HP-UVR": "2_HP-UVR.pth", |
|
"VR Arch Single Model v5: 3_HP-Vocal-UVR": "3_HP-Vocal-UVR.pth", |
|
"VR Arch Single Model v5: 4_HP-Vocal-UVR": "4_HP-Vocal-UVR.pth", |
|
"VR Arch Single Model v5: 5_HP-Karaoke-UVR": "5_HP-Karaoke-UVR.pth", |
|
"VR Arch Single Model v5: 6_HP-Karaoke-UVR": "6_HP-Karaoke-UVR.pth", |
|
"VR Arch Single Model v5: 7_HP2-UVR": "7_HP2-UVR.pth", |
|
"VR Arch Single Model v5: 8_HP2-UVR": "8_HP2-UVR.pth", |
|
"VR Arch Single Model v5: 9_HP2-UVR": "9_HP2-UVR.pth", |
|
"VR Arch Single Model v5: 10_SP-UVR-2B-32000-1": "10_SP-UVR-2B-32000-1.pth", |
|
"VR Arch Single Model v5: 11_SP-UVR-2B-32000-2": "11_SP-UVR-2B-32000-2.pth", |
|
"VR Arch Single Model v5: 12_SP-UVR-3B-44100": "12_SP-UVR-3B-44100.pth", |
|
"VR Arch Single Model v5: 13_SP-UVR-4B-44100-1": "13_SP-UVR-4B-44100-1.pth", |
|
"VR Arch Single Model v5: 14_SP-UVR-4B-44100-2": "14_SP-UVR-4B-44100-2.pth", |
|
"VR Arch Single Model v5: 15_SP-UVR-MID-44100-1": "15_SP-UVR-MID-44100-1.pth", |
|
"VR Arch Single Model v5: 16_SP-UVR-MID-44100-2": "16_SP-UVR-MID-44100-2.pth", |
|
"VR Arch Single Model v4: MGM_HIGHEND_v4": "MGM_HIGHEND_v4.pth", |
|
"VR Arch Single Model v4: MGM_LOWEND_A_v4": "MGM_LOWEND_A_v4.pth", |
|
"VR Arch Single Model v4: MGM_LOWEND_B_v4": "MGM_LOWEND_B_v4.pth", |
|
"VR Arch Single Model v4: MGM_MAIN_v4": "MGM_MAIN_v4.pth" |
|
} |
|
|
|
FULL_DOWNLOAD_LIST_MDX = { |
|
"MDX-Net Model: UVR-MDX-NET Main": "UVR_MDXNET_Main.onnx", |
|
"MDX-Net Model: UVR-MDX-NET Inst Main": "UVR-MDX-NET-Inst_Main.onnx", |
|
"MDX-Net Model: UVR-MDX-NET 1": "UVR_MDXNET_1_9703.onnx", |
|
"MDX-Net Model: UVR-MDX-NET 2": "UVR_MDXNET_2_9682.onnx", |
|
"MDX-Net Model: UVR-MDX-NET 3": "UVR_MDXNET_3_9662.onnx", |
|
"MDX-Net Model: UVR-MDX-NET Inst 1": "UVR-MDX-NET-Inst_1.onnx", |
|
"MDX-Net Model: UVR-MDX-NET Inst 2": "UVR-MDX-NET-Inst_2.onnx", |
|
"MDX-Net Model: UVR-MDX-NET Inst 3": "UVR-MDX-NET-Inst_3.onnx", |
|
"MDX-Net Model: UVR-MDX-NET Karaoke": "UVR_MDXNET_KARA.onnx", |
|
"MDX-Net Model: UVR_MDXNET_9482": "UVR_MDXNET_9482.onnx", |
|
"MDX-Net Model: Kim_Vocal_1": "Kim_Vocal_1.onnx", |
|
"MDX-Net Model: kuielab_a_vocals": "kuielab_a_vocals.onnx", |
|
"MDX-Net Model: kuielab_a_other": "kuielab_a_other.onnx", |
|
"MDX-Net Model: kuielab_a_bass": "kuielab_a_bass.onnx", |
|
"MDX-Net Model: kuielab_a_drums": "kuielab_a_drums.onnx", |
|
"MDX-Net Model: kuielab_b_vocals": "kuielab_b_vocals.onnx", |
|
"MDX-Net Model: kuielab_b_other": "kuielab_b_other.onnx", |
|
"MDX-Net Model: kuielab_b_bass": "kuielab_b_bass.onnx", |
|
"MDX-Net Model: kuielab_b_drums": "kuielab_b_drums.onnx"} |
|
|
|
FULL_DOWNLOAD_LIST_DEMUCS = { |
|
|
|
"Demucs v4: htdemucs_ft":{ |
|
"f7e0c4bc-ba3fe64a.th":"https://dl.fbaipublicfiles.com/demucs/hybrid_transformer/f7e0c4bc-ba3fe64a.th", |
|
"d12395a8-e57c48e6.th":"https://dl.fbaipublicfiles.com/demucs/hybrid_transformer/d12395a8-e57c48e6.th", |
|
"92cfc3b6-ef3bcb9c.th":"https://dl.fbaipublicfiles.com/demucs/hybrid_transformer/92cfc3b6-ef3bcb9c.th", |
|
"04573f0d-f3cf25b2.th":"https://dl.fbaipublicfiles.com/demucs/hybrid_transformer/04573f0d-f3cf25b2.th", |
|
"htdemucs_ft.yaml": "https://github.com/TRvlvr/model_repo/releases/download/all_public_uvr_models/htdemucs_ft.yaml" |
|
}, |
|
|
|
"Demucs v4: htdemucs":{ |
|
"955717e8-8726e21a.th": "https://dl.fbaipublicfiles.com/demucs/hybrid_transformer/955717e8-8726e21a.th", |
|
"htdemucs.yaml": "https://github.com/TRvlvr/model_repo/releases/download/all_public_uvr_models/htdemucs.yaml" |
|
}, |
|
|
|
"Demucs v4: hdemucs_mmi":{ |
|
"75fc33f5-1941ce65.th": "https://dl.fbaipublicfiles.com/demucs/hybrid_transformer/75fc33f5-1941ce65.th", |
|
"hdemucs_mmi.yaml": "https://github.com/TRvlvr/model_repo/releases/download/all_public_uvr_models/hdemucs_mmi.yaml" |
|
}, |
|
"Demucs v4: htdemucs_6s":{ |
|
"5c90dfd2-34c22ccb.th": "https://dl.fbaipublicfiles.com/demucs/hybrid_transformer/5c90dfd2-34c22ccb.th", |
|
"htdemucs_6s.yaml": "https://github.com/TRvlvr/model_repo/releases/download/all_public_uvr_models/htdemucs_6s.yaml" |
|
}, |
|
"Demucs v3: mdx":{ |
|
"0d19c1c6-0f06f20e.th": "https://dl.fbaipublicfiles.com/demucs/mdx_final/0d19c1c6-0f06f20e.th", |
|
"7ecf8ec1-70f50cc9.th": "https://dl.fbaipublicfiles.com/demucs/mdx_final/7ecf8ec1-70f50cc9.th", |
|
"c511e2ab-fe698775.th": "https://dl.fbaipublicfiles.com/demucs/mdx_final/c511e2ab-fe698775.th", |
|
"7d865c68-3d5dd56b.th": "https://dl.fbaipublicfiles.com/demucs/mdx_final/7d865c68-3d5dd56b.th", |
|
"mdx.yaml": "https://github.com/TRvlvr/model_repo/releases/download/all_public_uvr_models/mdx.yaml" |
|
}, |
|
|
|
"Demucs v3: mdx_q":{ |
|
"6b9c2ca1-3fd82607.th": "https://dl.fbaipublicfiles.com/demucs/mdx_final/6b9c2ca1-3fd82607.th", |
|
"b72baf4e-8778635e.th": "https://dl.fbaipublicfiles.com/demucs/mdx_final/b72baf4e-8778635e.th", |
|
"42e558d4-196e0e1b.th": "https://dl.fbaipublicfiles.com/demucs/mdx_final/42e558d4-196e0e1b.th", |
|
"305bc58f-18378783.th": "https://dl.fbaipublicfiles.com/demucs/mdx_final/305bc58f-18378783.th", |
|
"mdx_q.yaml": "https://github.com/TRvlvr/model_repo/releases/download/all_public_uvr_models/mdx_q.yaml" |
|
}, |
|
|
|
"Demucs v3: mdx_extra":{ |
|
"e51eebcc-c1b80bdd.th": "https://dl.fbaipublicfiles.com/demucs/mdx_final/e51eebcc-c1b80bdd.th", |
|
"a1d90b5c-ae9d2452.th": "https://dl.fbaipublicfiles.com/demucs/mdx_final/a1d90b5c-ae9d2452.th", |
|
"5d2d6c55-db83574e.th": "https://dl.fbaipublicfiles.com/demucs/mdx_final/5d2d6c55-db83574e.th", |
|
"cfa93e08-61801ae1.th": "https://dl.fbaipublicfiles.com/demucs/mdx_final/cfa93e08-61801ae1.th", |
|
"mdx_extra.yaml": "https://github.com/TRvlvr/model_repo/releases/download/all_public_uvr_models/mdx_extra.yaml" |
|
}, |
|
|
|
"Demucs v3: mdx_extra_q": { |
|
"83fc094f-4a16d450.th": "https://dl.fbaipublicfiles.com/demucs/mdx_final/83fc094f-4a16d450.th", |
|
"464b36d7-e5a9386e.th": "https://dl.fbaipublicfiles.com/demucs/mdx_final/464b36d7-e5a9386e.th", |
|
"14fc6a69-a89dd0ee.th": "https://dl.fbaipublicfiles.com/demucs/mdx_final/14fc6a69-a89dd0ee.th", |
|
"7fd6ef75-a905dd85.th": "https://dl.fbaipublicfiles.com/demucs/mdx_final/7fd6ef75-a905dd85.th", |
|
"mdx_extra_q.yaml": "https://github.com/TRvlvr/model_repo/releases/download/all_public_uvr_models/mdx_extra_q.yaml" |
|
}, |
|
|
|
"Demucs v3: UVR Model":{ |
|
"ebf34a2db.th": "https://github.com/TRvlvr/model_repo/releases/download/all_public_uvr_models/ebf34a2db.th", |
|
"UVR_Demucs_Model_1.yaml": "https://github.com/TRvlvr/model_repo/releases/download/all_public_uvr_models/UVR_Demucs_Model_1.yaml" |
|
}, |
|
|
|
"Demucs v3: repro_mdx_a":{ |
|
"9a6b4851-03af0aa6.th": "https://dl.fbaipublicfiles.com/demucs/mdx_final/9a6b4851-03af0aa6.th", |
|
"1ef250f1-592467ce.th": "https://dl.fbaipublicfiles.com/demucs/mdx_final/1ef250f1-592467ce.th", |
|
"fa0cb7f9-100d8bf4.th": "https://dl.fbaipublicfiles.com/demucs/mdx_final/fa0cb7f9-100d8bf4.th", |
|
"902315c2-b39ce9c9.th": "https://dl.fbaipublicfiles.com/demucs/mdx_final/902315c2-b39ce9c9.th", |
|
"repro_mdx_a.yaml": "https://github.com/TRvlvr/model_repo/releases/download/all_public_uvr_models/repro_mdx_a.yaml" |
|
}, |
|
|
|
"Demucs v3: repro_mdx_a_time_only":{ |
|
"9a6b4851-03af0aa6.th":"https://dl.fbaipublicfiles.com/demucs/mdx_final/9a6b4851-03af0aa6.th", |
|
"1ef250f1-592467ce.th":"https://dl.fbaipublicfiles.com/demucs/mdx_final/1ef250f1-592467ce.th", |
|
"repro_mdx_a_time_only.yaml": "https://github.com/TRvlvr/model_repo/releases/download/all_public_uvr_models/repro_mdx_a_time_only.yaml" |
|
}, |
|
|
|
"Demucs v3: repro_mdx_a_hybrid_only":{ |
|
"fa0cb7f9-100d8bf4.th":"https://dl.fbaipublicfiles.com/demucs/mdx_final/fa0cb7f9-100d8bf4.th", |
|
"902315c2-b39ce9c9.th":"https://dl.fbaipublicfiles.com/demucs/mdx_final/902315c2-b39ce9c9.th", |
|
"repro_mdx_a_hybrid_only.yaml": "https://github.com/TRvlvr/model_repo/releases/download/all_public_uvr_models/repro_mdx_a_hybrid_only.yaml" |
|
}, |
|
|
|
"Demucs v2: demucs": { |
|
"demucs-e07c671f.th": "https://dl.fbaipublicfiles.com/demucs/v3.0/demucs-e07c671f.th" |
|
}, |
|
|
|
"Demucs v2: demucs_extra": { |
|
"demucs_extra-3646af93.th":"https://dl.fbaipublicfiles.com/demucs/v3.0/demucs_extra-3646af93.th" |
|
}, |
|
|
|
"Demucs v2: demucs48_hq": { |
|
"demucs48_hq-28a1282c.th":"https://dl.fbaipublicfiles.com/demucs/v3.0/demucs48_hq-28a1282c.th" |
|
}, |
|
|
|
"Demucs v2: tasnet": { |
|
"tasnet-beb46fac.th":"https://dl.fbaipublicfiles.com/demucs/v3.0/tasnet-beb46fac.th" |
|
}, |
|
|
|
"Demucs v2: tasnet_extra": { |
|
"tasnet_extra-df3777b2.th":"https://dl.fbaipublicfiles.com/demucs/v3.0/tasnet_extra-df3777b2.th" |
|
}, |
|
|
|
"Demucs v2: demucs_unittest": { |
|
"demucs_unittest-09ebc15f.th":"https://dl.fbaipublicfiles.com/demucs/v3.0/demucs_unittest-09ebc15f.th" |
|
}, |
|
|
|
"Demucs v1: demucs": { |
|
"demucs.th":"https://dl.fbaipublicfiles.com/demucs/v2.0/demucs.th" |
|
}, |
|
|
|
"Demucs v1: demucs_extra": { |
|
"demucs_extra.th":"https://dl.fbaipublicfiles.com/demucs/v2.0/demucs_extra.th" |
|
}, |
|
|
|
"Demucs v1: light": { |
|
"light.th":"https://dl.fbaipublicfiles.com/demucs/v2.0/light.th" |
|
}, |
|
|
|
"Demucs v1: light_extra": { |
|
"light_extra.th":"https://dl.fbaipublicfiles.com/demucs/v2.0/light_extra.th" |
|
}, |
|
|
|
"Demucs v1: tasnet": { |
|
"tasnet.th":"https://dl.fbaipublicfiles.com/demucs/v2.0/tasnet.th" |
|
}, |
|
|
|
"Demucs v1: tasnet_extra": { |
|
"tasnet_extra.th":"https://dl.fbaipublicfiles.com/demucs/v2.0/tasnet_extra.th" |
|
} |
|
} |
|
|
|
|
|
|
|
CHOOSE_PROC_METHOD_MAIN_LABEL = 'CHOOSE PROCESS METHOD' |
|
SELECT_SAVED_SETTINGS_MAIN_LABEL = 'SELECT SAVED SETTINGS' |
|
CHOOSE_MDX_MODEL_MAIN_LABEL = 'CHOOSE MDX-NET MODEL' |
|
BATCHES_MDX_MAIN_LABEL = 'BATCH SIZE' |
|
VOL_COMP_MDX_MAIN_LABEL = 'VOLUME COMPENSATION' |
|
SELECT_VR_MODEL_MAIN_LABEL = 'CHOOSE VR MODEL' |
|
AGGRESSION_SETTING_MAIN_LABEL = 'AGGRESSION SETTING' |
|
WINDOW_SIZE_MAIN_LABEL = 'WINDOW SIZE' |
|
CHOOSE_DEMUCS_MODEL_MAIN_LABEL = 'CHOOSE DEMUCS MODEL' |
|
CHOOSE_DEMUCS_STEMS_MAIN_LABEL = 'CHOOSE STEM(S)' |
|
CHOOSE_SEGMENT_MAIN_LABEL = 'SEGMENT' |
|
ENSEMBLE_OPTIONS_MAIN_LABEL = 'ENSEMBLE OPTIONS' |
|
CHOOSE_MAIN_PAIR_MAIN_LABEL = 'MAIN STEM PAIR' |
|
CHOOSE_ENSEMBLE_ALGORITHM_MAIN_LABEL = 'ENSEMBLE ALGORITHM' |
|
AVAILABLE_MODELS_MAIN_LABEL = 'AVAILABLE MODELS' |
|
CHOOSE_AUDIO_TOOLS_MAIN_LABEL = 'CHOOSE AUDIO TOOL' |
|
CHOOSE_MANUAL_ALGORITHM_MAIN_LABEL = 'CHOOSE ALGORITHM' |
|
CHOOSE_RATE_MAIN_LABEL = 'RATE' |
|
CHOOSE_SEMITONES_MAIN_LABEL = 'SEMITONES' |
|
GPU_CONVERSION_MAIN_LABEL = 'GPU Conversion' |
|
|
|
if OPERATING_SYSTEM=="Darwin": |
|
LICENSE_OS_SPECIFIC_TEXT = '• This application is intended for those running macOS Catalina and above.\n' +\ |
|
'• Application functionality for systems running macOS Mojave or lower is not guaranteed.\n' +\ |
|
'• Application functionality for older or budget Mac systems is not guaranteed.\n\n' |
|
FONT_SIZE_F1 = 13 |
|
FONT_SIZE_F2 = 11 |
|
FONT_SIZE_F3 = 12 |
|
FONT_SIZE_0 = 9 |
|
FONT_SIZE_1 = 11 |
|
FONT_SIZE_2 = 12 |
|
FONT_SIZE_3 = 13 |
|
FONT_SIZE_4 = 14 |
|
FONT_SIZE_5 = 15 |
|
FONT_SIZE_6 = 17 |
|
HELP_HINT_CHECKBOX_WIDTH = 13 |
|
MDX_CHECKBOXS_WIDTH = 14 |
|
VR_CHECKBOXS_WIDTH = 14 |
|
ENSEMBLE_CHECKBOXS_WIDTH = 18 |
|
DEMUCS_CHECKBOXS_WIDTH = 14 |
|
DEMUCS_PRE_CHECKBOXS_WIDTH = 20 |
|
GEN_SETTINGS_WIDTH = 17 |
|
MENU_COMBOBOX_WIDTH = 16 |
|
|
|
elif OPERATING_SYSTEM=="Linux": |
|
LICENSE_OS_SPECIFIC_TEXT = '• This application is intended for those running Linux Ubuntu 18.04+.\n' +\ |
|
'• Application functionality for systems running other Linux platforms is not guaranteed.\n' +\ |
|
'• Application functionality for older or budget systems is not guaranteed.\n\n' |
|
FONT_SIZE_F1 = 10 |
|
FONT_SIZE_F2 = 8 |
|
FONT_SIZE_F3 = 9 |
|
FONT_SIZE_0 = 7 |
|
FONT_SIZE_1 = 8 |
|
FONT_SIZE_2 = 9 |
|
FONT_SIZE_3 = 10 |
|
FONT_SIZE_4 = 11 |
|
FONT_SIZE_5 = 12 |
|
FONT_SIZE_6 = 15 |
|
HELP_HINT_CHECKBOX_WIDTH = 13 |
|
MDX_CHECKBOXS_WIDTH = 14 |
|
VR_CHECKBOXS_WIDTH = 16 |
|
ENSEMBLE_CHECKBOXS_WIDTH = 25 |
|
DEMUCS_CHECKBOXS_WIDTH = 18 |
|
DEMUCS_PRE_CHECKBOXS_WIDTH = 27 |
|
GEN_SETTINGS_WIDTH = 17 |
|
MENU_COMBOBOX_WIDTH = 19 |
|
|
|
elif OPERATING_SYSTEM=="Windows": |
|
LICENSE_OS_SPECIFIC_TEXT = '• This application is intended for those running Windows 10 or higher.\n' +\ |
|
'• Application functionality for systems running Windows 7 or lower is not guaranteed.\n' +\ |
|
'• Application functionality for Intel Pentium & Celeron CPUs systems is not guaranteed.\n\n' |
|
FONT_SIZE_F1 = 10 |
|
FONT_SIZE_F2 = 8 |
|
FONT_SIZE_F3 = 9 |
|
FONT_SIZE_0 = 7 |
|
FONT_SIZE_1 = 8 |
|
FONT_SIZE_2 = 9 |
|
FONT_SIZE_3 = 10 |
|
FONT_SIZE_4 = 11 |
|
FONT_SIZE_5 = 12 |
|
FONT_SIZE_6 = 15 |
|
HELP_HINT_CHECKBOX_WIDTH = 16 |
|
MDX_CHECKBOXS_WIDTH = 16 |
|
VR_CHECKBOXS_WIDTH = 16 |
|
ENSEMBLE_CHECKBOXS_WIDTH = 25 |
|
DEMUCS_CHECKBOXS_WIDTH = 18 |
|
DEMUCS_PRE_CHECKBOXS_WIDTH = 27 |
|
GEN_SETTINGS_WIDTH = 23 |
|
MENU_COMBOBOX_WIDTH = 19 |
|
|
|
|
|
LICENSE_TEXT = lambda a, p:f'Current Application Version: Ultimate Vocal Remover {a}\n' +\ |
|
f'Current Patch Version: {p}\n\n' +\ |
|
'Copyright (c) 2022 Ultimate Vocal Remover\n\n' +\ |
|
'UVR is free and open-source, but MIT licensed. Please credit us if you use our\n' +\ |
|
f'models or code for projects unrelated to UVR.\n\n{LICENSE_OS_SPECIFIC_TEXT}' +\ |
|
'This bundle contains the UVR interface, Python, PyTorch, and other\n' +\ |
|
'dependencies needed to run the application effectively.\n\n' +\ |
|
'Website Links: This application, System or Service(s) may contain links to\n' +\ |
|
'other websites and downloads, and they are solely provided to you as an\n' +\ |
|
'additional convenience. You understand and acknowledge that by clicking\n' +\ |
|
'or activating such links you are accessing a site or service outside of\n' +\ |
|
'this application, and that we do not screen, review, approve, or otherwise\n' +\ |
|
'endorse any content or information contained in these linked websites.\n' +\ |
|
'You acknowledge and agree that we, our affiliates and partners are not\n' +\ |
|
'responsible for the contents of any of these linked websites, including\n' +\ |
|
'the accuracy or availability of information provided by the linked websites,\n' +\ |
|
'and we make no representations or warranties regarding your use of\n' +\ |
|
'the linked websites.\n\n' +\ |
|
'This application is MIT Licensed\n\n' +\ |
|
'Permission is hereby granted, free of charge, to any person obtaining a copy\n' +\ |
|
'of this software and associated documentation files (the "Software"), to deal\n' +\ |
|
'in the Software without restriction, including without limitation the rights\n' +\ |
|
'to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n' +\ |
|
'copies of the Software, and to permit persons to whom the Software is\n' +\ |
|
'furnished to do so, subject to the following conditions:\n\n' +\ |
|
'The above copyright notice and this permission notice shall be included in all\n' +\ |
|
'copies or substantial portions of the Software.\n\n' +\ |
|
'THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n' +\ |
|
'IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n' +\ |
|
'FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n' +\ |
|
'AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n' +\ |
|
'LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n' +\ |
|
'OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n' +\ |
|
'SOFTWARE.' |
|
|
|
CHANGE_LOG_HEADER = lambda patch:f"Patch Version:\n\n{patch}" |
|
|
|
|
|
|
|
MAC_DND_CHECK = ('/Users/', |
|
'/Applications/', |
|
'/Library/', |
|
'/System/') |
|
LINUX_DND_CHECK = ('/home/', |
|
'/usr/') |
|
WINDOWS_DND_CHECK = ('A:', 'B:', 'C:', 'D:', 'E:', 'F:', 'G:', 'H:', 'I:', 'J:', 'K:', 'L:', 'M:', 'N:', 'O:', 'P:', 'Q:', 'R:', 'S:', 'T:', 'U:', 'V:', 'W:', 'X:', 'Y:', 'Z:') |
|
|
|
WOOD_INST_MODEL_HASH = '0ec76fd9e65f81d8b4fbd13af4826ed8' |
|
WOOD_INST_PARAMS = { |
|
"vr_model_param": "4band_v3", |
|
"primary_stem": NO_WIND_INST_STEM |
|
} |