public async Task <string> GetReplacementEmbyPath(int libraryPathId, string path, bool log = true)
    {
        List <EmbyPathReplacement> replacements =
            await _mediaSourceRepository.GetEmbyPathReplacementsByLibraryId(libraryPathId);

        return(GetReplacementEmbyPath(replacements, path, log));
    }