def get_voxconverse_files()

in datasets/spd_datasets.py [0:0]


def get_voxconverse_files(path_to_voxconverse):

    rttm_files = {
        "dev": glob.glob(path_to_voxconverse + "/voxconverse/dev/*.rttm"),
        "test": glob.glob(path_to_voxconverse + "/voxconverse/test/*.rttm"),
    }

    audio_files = {
        "dev": glob.glob(path_to_voxconverse + "/voxconverse/audio/*.wav"),
        "test": glob.glob(path_to_voxconverse + "/voxconverse/voxconverse_test_wav/*.wav"),
    }

    return audio_files, rttm_files